为什么 OxyPlot.PngExporter.Export 不导出 .png 文件
Why does OxyPlot.PngExporter.Export not export a .png file
我尝试将 Oxyplot
PlotModel
导出到 .png
我这样试过:
Stream stream = File.Create(path);
var pngExporter = new PngExporter { Width = 600, Height = 400, Background = OxyColors.White };
PngExporter.Export(this.PlotModel, stream, 800, 600);
输出文件是 .File 类型。
如果文件扩展名为 .File,则表示文件丢失 *.png
,因此 windows 无法读取。
您可以尝试添加这样的文件扩展名 Stream stream = File.Create(path+ ".png");
我尝试将 Oxyplot
PlotModel
导出到 .png
我这样试过:
Stream stream = File.Create(path);
var pngExporter = new PngExporter { Width = 600, Height = 400, Background = OxyColors.White };
PngExporter.Export(this.PlotModel, stream, 800, 600);
输出文件是 .File 类型。
如果文件扩展名为 .File,则表示文件丢失 *.png
,因此 windows 无法读取。
您可以尝试添加这样的文件扩展名 Stream stream = File.Create(path+ ".png");