假设我有
JButton test = new JButton("Test Button");
我想将按钮绘制到图像对象中并将其保存到文件中。
我试过这个:
BufferedImage b = new BufferedImage(500, 500, BufferedImage.TYPE_INT_ARGB);
test.paint(b.createGraphics());
File output = new File("C:\\screenie.png");
try
{
ImageIO.write(b, "png", output);
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
此代码生成了一个空的 500x500 PNG 文件。有谁知道如何将 GUI 组件绘制到图像文件中?