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:
¿Porqeu no se ve?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);
Gracias!