vote up 6 vote down star
4

Simple as the title states: Can you use only Java commands to take a screenshot and save it? Or, do I need to use an OS specific program to take the screenshot and then grab it off the clipboard?

flag

I never knew it would be so simple. – jjnguy Sep 12 '08 at 18:00

2 Answers

vote up 13 vote down check

Believe it or not, you can actually use java.awt.Robot to "create an image containing pixels read from the screen." You can then write that image to a file on disk.

I just tried it, and the whole thing ends up like:

Rectangle screenRect = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
BufferedImage capture = new Robot().createScreenCapture(screenRect);
ImageIO.write(capture, "bmp", new File(args[0]));

NOTE: This will only capture the primary monitor. See GraphicsConfiguration for multi-monitor support.

link|flag
Wow - who would have thought. That is very very cool. – Michael Neale Sep 12 '08 at 5:16
I'd never come across java.awt.Robot. That's one impressive and useful class. – Free Wildebeest Sep 14 '08 at 23:59
vote up 3 vote down

http://schmidt.devlib.org/java/save-screenshot.html

link|flag
The reason I didn't accept your answer was because it was someone elses code. – jjnguy Sep 12 '08 at 17:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.