is there any free and open source java library for capturing active window screenshot?
I want to use it to capture any active window, not only SWING windows.
Thanks.
|
|
Okay, you need to get the handle to the window, see this post for code: http://stackoverflow.com/questions/386792/in-java-swing-how-do-you-get-a-win32-window-handle-hwnd-reference-to-a-window After that, get the window size using the handle, and finally capture the image using the following code:
It's complex, but there's no real Java API. Similar post that came to the same conclusion: http://www.daniweb.com/forums/thread101597.html# |
|||
|
|
|
Here is the answer for Windows (not sure if alt+printScr works on linux :P) I guess one way to achieve this 1. using Robot class to fire alt+printScreen Command (this captures active window to clipboard) 2. read the clipboard! Here are the two pieces of code that do that. I have not actually tried, but something that I pieced together.
You can manage the control as you need to! Let me know if this works for you. but this is certainly on my todo to try it out! |
|||||
|
|
Why not use the Robot class?
|
||||
|
|
|
|||
|
|
As an addition to Chris' answer, to easily save that image to file, you can use the For Example:
Good thing that this is all in the standard JRE and is relatively simple to achieve. I can't believe there are capture libraries--albieit with some additional capabilities--retailing for as much as $375! |
||||
|
|