Te dejo un codigo que te ayudara
Código PHP:
public class MainDesktopPane extends JDesktopPane{
private Image image;
public MainDesktopPane() {
super();
image = new ImageIcon(getClass().getResource("/images/logo.png")).getImage();
setBackground(new Color(69, 64, 92));
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
int h = (int)image.getHeight(null)/2;
int w = (int)(image.getWidth(null)/2);
g.drawImage(image, (int)getWidth()/2 - w, (int)getHeight()/2 - h, null);
}
}
salu2