Tema: DisplayJAI
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/09/2005, 11:53
Avatar de cesniel
cesniel
 
Fecha de Ingreso: julio-2005
Ubicación: Cali, Colombia
Mensajes: 7
Antigüedad: 19 años, 4 meses
Puntos: 0
le realice los siguientes cambios al metodo y me funciono:

void Mostrar_foto(String foto){
jPanel2.setVisible(false);
jPanel2.remove(aCanvas1);
PlanarImage image1 = (PlanarImage)JAI.create("fileload",foto);
aCanvas1 = new DisplayJAI(image1);
aCanvas1.setBackground(Color.black);
aCanvas1.setLayout(borderLayout6);
jPanel2.setLayout(borderLayout2);
jPanel2.add(aCanvas1,BorderLayout.CENTER);
jPanel2.setVisible(true);
}