xlsx4j でチャートを画像に変換する

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);

ランニングコードのダウンロード

サンプルコードをダウンロード