Skip to content

Instantly share code, notes, and snippets.

@iamabs2001
Created March 3, 2021 13:57
Show Gist options
  • Save iamabs2001/b50240261d4f0f1d5ad1bb66bb0fb292 to your computer and use it in GitHub Desktop.
Save iamabs2001/b50240261d4f0f1d5ad1bb66bb0fb292 to your computer and use it in GitHub Desktop.
Java Swing Screenshot
// to take Jpanel of any of your component screenshot
void takeScreenshot() {
BufferedImage img = new BufferedImage(yourComponent.getWidth(), yourComponent.getHeight(), BufferedImage.TYPE_INT_RGB);
yourComponent.paint(img.getGraphics());
File outputfile = new File("saved.png");
ImageIO.write(img, "png", outputfile);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment