Question

I am trying to use an image I made in photoshop as the background for my GUI. How do I do that? also I made some images I want to display in the button backgrounds after the action is performed...

Was it helpful?

Solution

For the JButton, use this:

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

The Panel is a bit more interesting. This is a good method, though:

ImagePanel panel = new ImagePanel(new ImageIcon("foo.png").getImage());
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top