小编典典

将图像用作JPanel和JButton的背景

java

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


阅读 230

收藏
2020-11-30

共1个答案

小编典典

对于JButton,请使用以下命令:

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

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

ImagePanel panel = new ImagePanel(new ImageIcon("foo.png").getImage());
2020-11-30