Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/05/2012, 04:24
cucuru
 
Fecha de Ingreso: marzo-2009
Mensajes: 509
Antigüedad: 15 años, 10 meses
Puntos: 17
imagenes en un JFrame con imagen de fondo

hola! No consigo posicionar unas imágenes en mi JFrame .

Este JFrame tiene una imagen de fondo que hago con un JLabel.

Supongo que las imágenes las posiciono en otro JLabel y luego las añado al principal:

Código:
        
       JFrame frame = new JFrame();
           

        JLabel background = new JLabel();
       	ImageIcon backgrondImage = new ImageIcon(getClass().getResource("/images/background.jpg"));
      
        background = new JLabel(backgrondImage);
       
       
        Font f = new Font("Dialog", Font.PLAIN, 32);
       			
    			String path = "http://www.miimagen.jpg"
                URL url = new URL(path);
                BufferedImage image = ImageIO.read(url);
                JLabel label = new JLabel(new ImageIcon(image));

    			background.add(label);
                
        frame.getContentPane().add(background);
        
        frame.setVisible(true);
¿Porqeu no se ve?

Gracias!