我目前正在使用SWT和Eclipse的WindowBuilder创建一个独立的应用程序(不是eclipse插件),我正在测试将一个图像放在一个复合体中,以便将它用作一种方法将图像轻松地放入我的复合材料中,当我尝试绘制图像时,它会抛出IllegalArgumentException。我不知道发生了什么,我正在寻找解释/替代方案。发生了什么以及如何解决这个问题?
如果我注释掉e.gc.drawImage
行,而不是其他内容,则不会抛出异常。
以下是给我错误的代码:
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class GUI {
public static final Display display = Display.getDefault();;
private final Shell shell;
public GUI() {
shell = new Shell(display);
shell.setLayout(new FillLayout(SWT.HORIZONTAL));
}
public static void main(String[] args) {
GUI window = new GUI();
window.open();
}
public void open() {
createContents();
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
}
private void createContents() {
shell.setSize(450, 300);
ImageTest img = new ImageTest(shell, SWT.NONE);
}
}
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Canvas;
public class ImageTest extends Composite {
public ImageTest(Composite parent, int style) {
super(parent, style);
setLayout(new FillLayout(SWT.HORIZONTAL));
final Image img = new Image(GUI.display, "img.gif");
// I tried drawing the image to both a canvas and the composite its self. Same outcome.
Canvas canvas = new Canvas(this, SWT.NONE);
canvas.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
e.gc.drawImage(img, 0, 0); // If I comment this out, it runs fine.
}
});
img.dispose();
}
@Override
protected void checkSubclass() {}
}
任何帮助都将不胜感激。
答案 0 :(得分:3)
您会收到错误,因为当paintControl尝试绘制图像时会处理该图像。在绘制侦听器甚至被调用之前,您可以在ImageTest
构造函数的末尾自行处理它。
您可以通过将img
作为类的成员变量然后覆盖dispose方法来进行清理来避免这种情况:
@Override
public void dispose() {
this.img.dispose();
super.dispose();
}
不要忘记删除
行img.dispose();
来自你的构造函数。
答案 1 :(得分:1)
GC.drawImage API文档说在以下情况下抛出了IllegalArgumentException。可能是图像对象为空。
IllegalArgumentException -
ERROR_NULL_ARGUMENT - if the image is null
ERROR_INVALID_ARGUMENT - if the image has been disposed
ERROR_INVALID_ARGUMENT - if the given coordinates are outside the bounds of the image