Código PHP:
private void pintar() throws Exception {
this.setLayout(null);
ImageIcon imagen = new ImageIcon (getClass().getResource("/dibujos/libresDos.gif"));
JLabel fondo = new JLabel(imagen);
fondo.setBounds(new Rectangle(0,0,900,500));
this.add(fondo);
JButton boton = new botonRedondo();
boton.setBackground(Color.red);
boton.setBounds(new Rectangle(150,150,40,40));
boton.setVisible(true);
this.getContentPane().add(boton);
}
Gracias!