複製代碼代碼如下:
導入org.eclipse.swt.graphics.gc;
導入org.eclipse.swt.graphics.image;
導入org.eclipse.swt.graphics.Rectangle;
導入org.eclipse.swt.widgets.display;
導入org.eclipse.swt.widgets.shell;
公共類Imageshelloworld {
公共靜態void main(string [] args){
display display = display.getDefault();
shell shell = new shell();
映像=新圖像(顯示,“ c://c240b2dcc132c9c6.jpg”);
shell.setText(“ ImagerEader”);
shell.setimage(image);
矩形邊界= image.getBounds();
shell.setsize(BONDS.WIDTH + 15,BONDS.HEIGHT +15);
shell.open();
GC GC =新GC(Shell);
GC.DrawImage(Image,5,5);
shell.layout();
while(!shell.isdisposed()){
如果(!display.readanddispatch()){
display.sleep();
}
}
display.dispose();
}
}