zl程序教程

您现在的位置是:首页 >  其它

当前栏目

Swing 显示良好JPanel保存为图片

显示 图片 保存 swing 良好
2023-09-14 09:10:18 时间

在JFrame例如,下面的代码被添加


   //自己的JPanel

DrawPanel drawPanel = new DrawPanel(list, width, height, start, end);

// 必需要有大小
drawPanel.setSize(width, height);

BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = image.createGraphics();
drawPanel.paint(g2);
try {
ImageIO.write(image, "jpeg", new File("jpanel.jpg"));
} catch (IOException e) {
e.printStackTrace();
}


版权声明:本文博客原创文章,博客,未经同意,不得转载。