我已经使用
Java的Swing创建了一个GUI.我现在必须将一个sample.jpeg图像作为背景放在我放置我的组件的框架上.如何做?
解决方法
在
JPanel
中没有“背景图像”的概念,所以必须用自己的方式来实现这样的功能.
实现这一点的一个方法是覆盖每次刷新JPanel时绘制背景图像的paintComponent
方法.
例如,将子类化为JPanel,并添加一个字段来保存背景图像,并覆盖paintComponent方法:
public class JPanelWithBackground extends JPanel { private Image backgroundImage; // Some code to initialize the background image. // Here,we use the constructor to load the image. This // can vary depending on the use case of the panel. public JPanelWithBackground(String fileName) throws IOException { backgroundImage = ImageIO.read(new File(fileName)); } public void paintComponent(Graphics g) { super.paintComponent(g); // Draw the background image. g.drawImage(backgroundImage,this); } }
(以上代码尚未测试.)
可以使用以下代码将JPanelWithBackground添加到JFrame中:
JFrame f = new JFrame(); f.getContentPane().add(new JPanelWithBackground("sample.jpeg"));
在本例中,ImageIO.read(File)
方法用于读取外部JPEG文件.