I need to copy the content of a window (BitBlt) which is hidden, to another window. The problem is that once I hide the source window, the device context I got isn't painted anymore.
|
feedback
|
|
What you need is the PrintWindow function that's available in Win32 API since Windows XP. If you need it to work with older versions of Windows, you can try WM_PRINT, although I've never been able to make it work. There's a nice article here that shows how to use PrintWindow, and here's the relevant code snippet from that article:
I should have some Python code that uses wxPython to achieve the same thing. Drop me a note if you want it. | |||||
feedback
|
|
Copy the source bitmap to a memory bitmap before closing/hiding the window. | |||
|
feedback
|
|
Maybe you can trigger a redraw operation on the window with InvalidateRect? | |||
|
feedback
|
|
You could try sending a Also, if you pass an HDC as the wparam of a WM_PAINT message, many windows (such as the common controls) will paint into that DC rather than onto the screen. | |||
|
feedback
|
|
Unfortunately, I think you're going to have real problems getting this to work reliably. You don't say exactly what you're doing, but I assume that, given the window handle, you're grabbing the device context associated with the window by calling GetWindowDC(), and then using the resulting device context. This will work okay on XP when the window is visible. However, on Vista, if desktop compositing is enabled, it won't even work properly then: you'll get 0 back from GetWindowDC(). Fundamentally, grabbing window device contexts isn't going to work reliably. If the window you're trying to copy from is part of your own application, I'd suggest modifying your code to support the WM___PRINT message: this acts like WM_PAINT, but allows you to supply a device context to draw into. If the window isn't from your application, you're basically out of luck: if the window is hidden, the image of what it would show if it were visible doesn't exist anywhere. | |||
|
feedback
|
|
The PrintWindow function doesn't seem to work on a hidden window, only on visible ones. | |||
|
feedback
|
|
Approaching things from a different perspective, are you sure that's really what you want to be doing? You don't, for example, want to be using CreateCompatibleDC and CreateCompatibleBitmap to create your invisible drawing surface, drawing on that and then using BitBlt? Some more information about the background to what you're up to might enable someone to come up with either a solution or some lateral thinking... | |||
|
feedback
|
|
http://msdn.microsoft.com/en-us/library/dd144909.aspx (getPixel) might help... | |||
|
feedback
|
|
I just tested this in Windows 7, should work fine from XP up. It brings the window to the foreground without giving it focus, before capturing it. It's not perfection, but it's the best you're going to do if you can't get PrintWindow() to work. It's a static method, so you just can simply call it like so:
No mess, no fuss. It's from a larger class, so hopefully nothing is missing. The originals are: http://sfinktah.trac.cvsdude.com/vhddirector/browser/main/VHD%20Director/UnhandledExceptionManager.cs and http://sfinktah.trac.cvsdude.com/vhddirector/browser/main/CSharp.cc/Win32Messaging.cs although they're nowhere as neat as the example I've pasted below.
Note that you can implement your own light-weight RECT class/struct, but this is the one I use. I've attached it separately due to it's size
| |||
|
feedback
|
|
For a window that is hidden behind another window you can set it to be transparent (with a high alpha so that it doesn't look transparent). It should then be possible to capture the whole window with BitBlt. | |||
|
feedback
|