Skip to content

Instantly share code, notes, and snippets.

@basilevs
Created October 28, 2024 16:10
Show Gist options
  • Save basilevs/e71e4c89c4730732e54f2959f59ae59b to your computer and use it in GitHub Desktop.
Save basilevs/e71e4c89c4730732e54f2959f59ae59b to your computer and use it in GitHub Desktop.
final Display display = Display.getDefault();
final Image captureImage = new Image(display, display.getBounds().width, display.getBounds().height);
GC gc = new GC(display);
gc.copyArea(captureImage, display.getBounds().x, display.getBounds().y);
gc.dispose();
Imagewriter.write(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment