在 JPanel 上显示 jpg 图像
在 JPanel 上显示 jpg 图像(从本地文件夹加载)最合适的图像类型是什么?
干杯。
What would be the most appropriate image type to display a jpg image (loaded from a local folder) on a JPanel?
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 javax.swing.ImageIcon 并使用 setIcon() 方法将其添加到 JLabel,然后将 JLabel 添加到 JPanel。
You could use a javax.swing.ImageIcon and add it to a JLabel using setIcon() method, then add the JLabel to the JPanel.
我可能会使用 ImageIcon 并将其设置在 JLabel 上,并将其添加到 JPanel 中。
这里是 Sun 关于该主题的文档。
I'd probably use an ImageIcon and set it on a JLabel which I'd add to the JPanel.
Here's Sun's docs on the subject matter.
我将使用添加到 JPanel 的 Canvas,并在 Canvas 上绘制图像。
但 Canvas 是一个相当重的对象,因为它来自 awt。
I would use a Canvas that I add to the JPanel, and draw the image on the Canvas.
But Canvas is a quite heavy object, sine it is from awt.
您也可以使用。
如果您使用绝对值作为布局,
You could also use
if your working with a absolut value as layout.