Andrew Murray

Results 761 comments of Andrew Murray

It's strange that our Ubuntu GitHub Actions free-threaded job doesn't detect this error, isn't it? The error report is on macOS, maybe the error only occurs on that platform. Edit:...

Could you attach an image to show what you're seeing?

Do these popups come from the same application that you are trying to see in your screenshot, or a different one? I'm wondering if the request of #4415 could be...

I've created #8516 to resolve this by adding a `handle` argument to `ImageGrab.grab()` that accepts a HDC. With that, you could do something like ```python import win32gui from PIL import...

Pillow releases occur [every three months](https://github.com/python-pillow/Pillow/blob/main/RELEASING.md) - the next one is scheduled for January 2nd. If you would like to try out the PR in the meantime, I've put together...

I expect it is something that people would want - I'm just not convinced that Windows makes that feature available. https://learn.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-bitblt is the API that we use to get the...

I wonder if there's another way to solve your problem of these popups covering your application - by moving your application to the foreground? https://stackoverflow.com/questions/66164926/in-python-how-do-i-make-a-specific-window-stay-on-top

> The screenshot is just a black screen. The black screen is the right size for the window though, yes? Something that may or may not be related to your...

If both `BitBlt` and `PrintWindow` are flawed, then my next idea would be for Pillow to run both when capturing a window - if one is non-black, then return that...