Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Screengrab DPI scaling on Windows 10 version 1607+ #4000

Merged
merged 3 commits into from Sep 30, 2019

Conversation

nulano
Copy link
Contributor

@nulano nulano commented Jul 31, 2019

Fixes #2438 and its duplicates #3432, #3626 for Windows 10 version 1607+ (Anniversary Update).

This PR uses SetThreadDpiAwarenessContext to temporarily make Python DPI aware. This function returns the previous awareness context, which is then used to restore the old value, thus avoiding problems with other parts of Python. It was added in Windows 10 version 1607, which is why it is called dynamically.

The issue is not fixed for older versions of Windows. This is not a big problem for Windows 7, as very few people use DPI scaling there. Windows 8 and Windows 10 pre-1607 are now out of standard support by Microsoft.

src/display.c Outdated
@@ -329,6 +331,9 @@ PyImaging_GrabScreenWin32(PyObject* self, PyObject* args)
HDC screen, screen_copy;
DWORD rop;
PyObject* buffer;
HANDLE dpiAwareness;
HMODULE user32 = LoadLibraryA("User32.dll");
Func_SetThreadDpiAwarenessContext SetThreadDpiAwarenessContext_function;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can someone suggest a better name here? This the best I could do but it's ridiculously long.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At least it's descriptive! :)

nulano and others added 2 commits August 12, 2019 18:51
* Load User32 after possible return

* Removed unused setting of variable
@radarhere radarhere merged commit aaf2c42 into python-pillow:master Sep 30, 2019
@hugovk
Copy link
Member

hugovk commented Sep 30, 2019

PR 4000! 🍰

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Pillow
  
Done
Development

Successfully merging this pull request may close these issues.

Enable DPI Scaling Awareness
3 participants