vote up 1 vote down star

Are any methods available to set an image as background in a JFrame?

flag

3 Answers

vote up 2 vote down

There is no built-in method, but there are several ways to do it. The most straightforward way that I can think of at the moment is:

  1. Create a subclass of JComponent.
  2. Override the paintComponent(Graphics g) method to paint the image that you want to display.
  3. Set the content pane of the JFrame to be this subclass.

Some sample code:

class ImagePanel extends JComponent {
    private Image image;
    public ImagePanel(Image image) {
        this.image = image;
    }
    @Override
    protected void paintComponent(Graphics g) {
        g.drawImage(image, 0, 0, null);
    }
}

// elsewhere
BufferedImage myImage = ImageIO.load(...);
JFrame myJFrame = new JFrame("Image pane");
myJFrame.setContentPane(new ImagePanel(myImage));

Note that this code does not handle resizing the image to fit the JFrame, if that's what you wanted.

link|flag
vote up 1 vote down

Try this :

import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;


public class Test {

    public static void main(String[] args) {
    	JFrame f = new JFrame();
    	try {
    		f.setContentPane(new JLabel(new ImageIcon(ImageIO.read(new File("test.jpg")))));
    	} catch (IOException e) {
    		e.printStackTrace();
    	}
    	f.pack();
    	f.setVisible(true);
    }

}

By the way, this will result in the content pane not being a container. If you want to add things to it you have to subclass a JPanel and override the paintComponent method.

link|flag
Actually, JLabel (like all JComponents) extends Container. I wonder what happens if you add something to a label? – mmyers Jun 30 at 17:50
actually nothing... i just tried it. you can add a JTextArea for instance but it doesn't draw. – Savvas Dalkitsis Jun 30 at 17:55
vote up 0 vote down

You can use the Background Panel class. It does the custom painting as explained above but gives you options to display the image scaled, tiled or normal size. It also explains how you can use a JLabel with an image as the content pane for the frame.

link|flag
Ah, I thought I recognized that name. Tired of dominating forums.sun.com? – mmyers Jul 1 at 18:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.