我正在尝试使用我在photoshop中制作的图像作为GUI的背景。我怎么做?在执行操作后,我还想在按钮背景中显示一些图像...
答案 0 :(得分:2)
对于JButton,请使用:
JButton button = new JButton("Button Name", new ImageIcon("foo.png");
小组更有趣。不过,这是一个很好的方法:
ImagePanel panel = new ImagePanel(new ImageIcon("foo.png").getImage());