What is the best (easiest) way to take a screenshot of an running application with C++ under Windows?
|
1
|
|||
|
|
|
You have to get the device context of the window ( |
|||
|
|
|
|
On the keybd_event function documentation it states that you can use it to take a screenshot and save it to the clipboard. For example:
In my version (Visual Studio 2005 help installed on my computer) it states that you can take a screenshot of the whole desktop by setting the second parameter to 0, or a screen shot of just the current application by setting it to 1. Taking it out of the clipboard buffer is left as an exercise for the reader. However I'd think carefully before doing this as it will turf whatever image data was already present in the clipboard. |
||
|
|
|
|
Press the button 'Print Screen' on your keyboard. Windows and Linux will dump the screen into the clipboard. |
||||||
|
