Wiki

Clone wiki

Aspose for Apache POI / Convert-Charts-to-Images

Aspose.Cells

//Get the Chart image
ImageOrPrintOptions imgOpts = new ImageOrPrintOptions();
imgOpts.setImageFormat(ImageFormat.getPng());

//Save the chart image file.
chart.toImage(new FileOutputStream("data/AsposeChartImage.png"), imgOpts);

Download Source Code

Updated