为什么OxyPlot.PngExporter.Export不会导出.png文件

时间:2016-05-31 11:48:27

标签: file plot export png oxyplot

我尝试将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类型。

enter image description here

1 个答案:

答案 0 :(得分:1)

如果文件扩展名为.File,则表示文件丢失*.png,因此Windows无法读取。 您可以尝试添加文件扩展名,例如Stream stream = File.Create(path+ ".png");