📜  在 jlabel 中添加图像 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:22.099000             🧑  作者: Mango

代码示例1
Image image=GenerateImage.toImage(true);  //this generates an image file
ImageIcon icon = new ImageIcon(image); 
JLabel thumb = new JLabel();
thumb.setIcon(icon);