我尝试将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类型。
答案 0 :(得分:1)
如果文件扩展名为.File,则表示文件丢失*.png
,因此Windows无法读取。
您可以尝试添加文件扩展名,例如Stream stream = File.Create(path+ ".png");