Hago copy & paste del libro Swing Hacks:
Código Java:
Ver originalpublic static void main
(String[] args
) { frame.setUndecorated(true);
TransparentBackground bg = new TransparentBackground(frame);
bg.snapBackground( );
public void paintComponent
(Graphics g
) { g.drawImage(img,0,0,null);
}
};
panel.setOpaque(false);
bg.add("Center",panel);
frame.getContentPane( ).add("Center",bg);
frame.pack( );
frame.setSize(200,200);
frame.setLocation(500,500);
frame.show( );
}
Saludos