我必须在向导对话框中设置图像,类路径加载此图像,但图像显示不正确
I have to set a image on wizard dialogue,classpath load this image, but image not displayed properly
我必须在 swt 中的向导对话框中设置图像,类路径加载此图像但图像显示不正确。在我的设计中,在这个合成中创建一个合成,在这个 lebel 之后创建一个 lebel.there,我想添加一个 image.After,我将创建一个可运行的 jar.This jar 将使用适当的图像执行。在我的实现部分,我在 src 文件夹中创建了一个资源(src 文件夹),并在这个资源文件夹中保存了图像,我 need.Please 找到下面的代码,
File file = new File("resources/Automatics_Logo.png");
Image image = new Image(Display.getDefault(), file.getPath());
Label lblNewLabel_4 = new Label(composite, SWT.NONE);
lblNewLabel_4.setImage(SWTResourceManager.getImage(CheckSystemConfigurationAndInstallation.class,image.toString()));
Image imgSWT=null; // Image class is the SWT Image class
ImageDescriptor imgDesc=null;
java.net.URL imgURL = IntroductionPage.class.getResource("/Automatics_Logo.png");
if (imgURL != null) {
imgDesc = ImageDescriptor.createFromURL(imgURL);
imgSWT = imgDesc.createImage();
我必须在 swt 中的向导对话框中设置图像,类路径加载此图像但图像显示不正确。在我的设计中,在这个合成中创建一个合成,在这个 lebel 之后创建一个 lebel.there,我想添加一个 image.After,我将创建一个可运行的 jar.This jar 将使用适当的图像执行。在我的实现部分,我在 src 文件夹中创建了一个资源(src 文件夹),并在这个资源文件夹中保存了图像,我 need.Please 找到下面的代码,
File file = new File("resources/Automatics_Logo.png");
Image image = new Image(Display.getDefault(), file.getPath());
Label lblNewLabel_4 = new Label(composite, SWT.NONE);
lblNewLabel_4.setImage(SWTResourceManager.getImage(CheckSystemConfigurationAndInstallation.class,image.toString()));
Image imgSWT=null; // Image class is the SWT Image class
ImageDescriptor imgDesc=null;
java.net.URL imgURL = IntroductionPage.class.getResource("/Automatics_Logo.png");
if (imgURL != null) {
imgDesc = ImageDescriptor.createFromURL(imgURL);
imgSWT = imgDesc.createImage();