我有一段这段代码在过去的4年中一直有效(对氧气不敏感),
自Windows 10 1809更新以来,这导致全黑图片。这会在多台PC上发生。
public static Image renderToImage(Control control) {
Shell imgShell = new Shell(control.getDisplay(), SWT.NO_TRIM);
Composite oldParent = control.getParent();
Point size = control.getSize();
imgShell.setSize(size);
control.setParent(imgShell);
Image image = new Image(control.getShell().getDisplay(), size.x, size.y);
GC gc = new GC(image);
//gc.setForeground(imgShell.getDisplay().getSystemColor(SWT.COLOR_RED));
//gc.drawString("Image",size.x/2, size.y/2, true);
control.print(gc);
gc.dispose();
control.setParent(oldParent);
return image;
}
我将应用程序从氧气更新为eclipse-rcp-1903,此问题仍然存在。
gc.drawString行有效,并将“ Image”字样写入Image。