vote up 1 vote down star

So I can use PIL to grab a screenshot of the desktop, and then use pywin32 to get its rectangle and crop out the part I want. However, if there's something in front of the window I want, it'll occlude the application I wanted a screenshot of. Is there any way to get what windows would say an application is currently displaying? It has that data somewhere, even when other windows are in front of it.

flag
"It has that data somewhere" not always true. What makes you say this? In many cases, the window must redraw when the order is changed. – S.Lott Jul 4 at 2:46
Yes, question is meaningless, because what's not visible may not exist, do you want to get its last drawn state, because current state is what you see, nothing. – Anurag Uniyal Jul 4 at 4:23
It is like asking when a bigger shadow covers my shadow, what is the shape of my shadow. – Anurag Uniyal Jul 4 at 4:25

4 Answers

vote up 0 vote down

Maybe you can position the app offscreen, then take the screenshot, then put it back?

link|flag
vote up 1 vote down

I've done the same thing by giving the application I want focus before taking the shot:

shell=win32com.client.Dispatch("Wscript.Shell")
success = shell.AppActivate(app_name) # Returns true if focus given successfully.
link|flag
vote up 1 vote down

If you can, try saving the order of the windows, then move your app to the front, screenshot, and move it back really quickly. Might produce a bit of annoying flicker, but it might be better than nothing.

link|flag
yeah, unless there's a specialized function that can take a specific screenshot, that's how I'd do it too. – Geo Jul 3 at 20:38
vote up 0 vote down

IIRC, not in Windows pre-vista - with Aero each window has it's own buffer, but before that, you would just use your method, of getting the rectangle. I'm not sure if pywin32 has Aero support or not.

link|flag

Your Answer

Get an OpenID
or

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