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