以及如何使用 Netbeans 将图像放在 JPanel 上?
问问题
60849 次
4 回答
7
查看本教程:在 Java GUI 应用程序中处理图像
同时你也可以编码:
JPanel panel = new JPanel();
ImageIcon icon = new ImageIcon("image.jpg");
JLabel label = new JLabel();
label.setIcon(icon);
panel.add(label);
于 2011-03-13T04:56:16.080 回答
3
您可以使用 ImageIcon 和 JLabel:
ImageIcon icon = createImageIcon("image.gif", "sample image");
// Label with text and icon
JLabel label1 = new JLabel("Image and Text", icon, JLabel.CENTER);
// Label with icon only
JLabel label2 = new JLabel(icon);
// Add to your JPanel
panel.add(label1);
panel.add(label2);
于 2011-03-13T04:53:50.157 回答
2
1) 首先将图像粘贴到应用程序文件夹 2) 向面板添加标签 3) 右键单击标签-> 属性 4) 选择图标-> 更多选项 5) 选择包和文件并单击确定 6) 完成 :)
于 2013-09-01T15:23:57.560 回答
1
您必须设置一个 JLabel 并将您的图标属性设置为图片。有关特定问题的更详细解决方案,请访问
http://www.netbeanstutorials.com/p/handling-images.html
甚至还有一个视频如何在那里做,以备不时之需。
于 2012-02-03T00:50:40.893 回答