Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/05/2012, 03:53
yasmine27
 
Fecha de Ingreso: noviembre-2010
Mensajes: 93
Antigüedad: 14 años
Puntos: 1
Tamaño imagen JLabel

Hola!!
Tengo un JPanel y dentro de él tengo una imagen, pero no se me ajusta al tamaño del JPanel, alguien sabe como hacerlo por favor??
Muchas gracias!!!
Os dejo el código:
Código Java:
Ver original
  1. public inicio2forma() {
  2.         initComponents();
  3.         setExtendedState(JFrame.MAXIMIZED_BOTH);
  4.  
  5.         ImageIcon pic = new ImageIcon("src/Imagenes/imagen.jpg");
  6.         jPanel1.add(new JLabel(pic));
  7.         this.add(jPanel1);
  8.         this.pack();
  9.         this.setVisible(true);
  10.     }