estoy tratando de dibujar una imagen swt pero no aparece nada:Cómo dibujar la imagen swt?
Display display = new Display();
Shell shell = new Shell(display);
shell.open();
Image image = new Image(display, "C:/sample_image.png");
Rectangle bounds = image.getBounds();
GC gc = new GC(image);
gc.drawImage(image, 100, 100);
// gc.drawLine(0, 0, bounds.width, bounds.height);
// gc.drawLine(0, bounds.height, bounds.width, 0);
// gc.dispose();
// image.dispose();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
he probado que la imagen existe y tiene el contenido - cualquier idea?
¿Dónde desea dibujar esta imagen? –
En mi pantalla. El shell está abierto pero vacío. – u123
posible duplicado de [¿Cómo mostrar una imagen con swt en java?] (Http://stackoverflow.com/questions/4447455/how-to-show-up-an-image-with-swt-in-java) – McDowell