在xlsx4j中将图表转换为图像
Contents
[
Hide
]
Aspose.Cells - 将图表转换为图像
图表具有视觉吸引力,方便用户查看数据中的比较、模式和趋势。 Chart类的toImage方法将图表转换为图像文件,可保存到磁盘或流中。
Java
//Get the Chart image
ImageOrPrintOptions imgOpts = new ImageOrPrintOptions();
imgOpts.setImageFormat(ImageFormat.getPng());
//Save the chart image file.
chart.toImage(new FileOutputStream(dataDir + "AsposeChartImage_Out.png"), imgOpts);
下载运行代码
下载示例代码
要了解更多详情,请访问将图表转换为图像。