我创建了一个Jfreechart,我正在尝试将其转换为图像。
JFrame frame = new JFrame("Chart");
frame.getContentPane().add(new ChartPanel(chart), BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
createImage(chart);
//createImage method
public static void createImage(JFreeChart chart){
try{
ChartUtilities.saveChartAsJPEG(new File("chartImage.jpeg"),chart,800,600);
}
catch (Exception e) {
e.printStackTrace();
}