Fix Screengrab DPI scaling on Windows 10 version 1607+#4000
Merged
radarhere merged 3 commits intopython-pillow:masterfrom Sep 30, 2019
Merged
Fix Screengrab DPI scaling on Windows 10 version 1607+#4000radarhere merged 3 commits intopython-pillow:masterfrom
radarhere merged 3 commits intopython-pillow:masterfrom
Conversation
nulano
commented
Jul 31, 2019
src/display.c
Outdated
| PyObject* buffer; | ||
| HANDLE dpiAwareness; | ||
| HMODULE user32 = LoadLibraryA("User32.dll"); | ||
| Func_SetThreadDpiAwarenessContext SetThreadDpiAwarenessContext_function; |
Contributor
Author
There was a problem hiding this comment.
Can someone suggest a better name here? This the best I could do but it's ridiculously long.
(cherry picked from commit 45ead62)
* Load User32 after possible return * Removed unused setting of variable
hugovk
approved these changes
Sep 26, 2019
Member
|
PR 4000! 🍰 |
This was referenced Sep 30, 2019
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2438 and its duplicates #3432, #3626 for Windows 10 version 1607+ (Anniversary Update).
This PR uses
SetThreadDpiAwarenessContextto 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.