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!