On either Win32 or wxWidgets, is there an easy way to get a screen capture of an application which has several windows open - e.g. floating toolbars and similar - without getting their desktop, etc, as well?

link|improve this question

69% accept rate
1  
Nothing built into Win32. You'll have to do the post-processing yourself. – Raymond Chen Nov 5 '11 at 18:01
Didn't imagine there would be :) – John Nov 6 '11 at 16:41
feedback

1 Answer

up vote 2 down vote accepted

The easiest would be capturing entire desktop, then enumerating windows and their positions so that you create a region/mask which leaves the windows of the process/application in question. Then applying the mask onto captured image would get you the requested snapshot.

link|improve this answer
I like your thinking. – John Nov 6 '11 at 16:43
feedback

Your Answer

 
or
required, but never shown

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