使用图像作为JPanel和JButton的背景

时间:2011-12-04 03:20:14

标签: java swing jpanel jlabel imageicon

我正在尝试使用我在photoshop中制作的图像作为GUI的背景。我怎么做?在执行操作后,我还想在按钮背景中显示一些图像...

1 个答案:

答案 0 :(得分:2)

对于JButton,请使用:

JButton button = new JButton("Button Name", new ImageIcon("foo.png");

小组更有趣。不过,这是一个很好的方法:

ImagePanel panel = new ImagePanel(new ImageIcon("foo.png").getImage());