自Windows 10 Update 1809和gc.print()/ gc.copyArea(

时间:2019-06-05 12:56:00

标签: eclipse windows-10 swt eclipse-rcp eclipse-2019-03

我有一段这段代码在过去的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。

以下屏幕截图显示了该问题。黑色区域应该是从外壳复制而来的图像,该外壳看起来像是下面的外壳。 enter image description here

0 个答案:

没有答案