mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 23:25:52 +03:00
[GH-ISSUE #73] ScreenToGif UI isn't per-screen DPI aware #1432
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#1432
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bitcrazed on GitHub (Jan 30, 2017).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/73
Originally assigned to: @NickeManarin on GitHub.
Screen2Gif does not recognize the DPI of the screen on which it is being displayed, and thus renders FAR too big on low-dpi screens (e.g. external 24" screen - top-right) while rendering correctly on high-DPI screen (e.g. my Surface Pro 4's screen - bottom):
External Screens at top, Surface screen below. Surface screen resized to reflect actual physical size)

Machine: Surface Pro 4 (12" @ 2736x1824)
External Screens: 2 x Dell U2412M (24" @ 1920x1200)
OS: Windows 10 Insider Build #15024
@NickeManarin commented on GitHub (Jan 31, 2017):
I believe this has something to do with a bug that spoiled recordings with multi-DPI set of screens.
Because the recorder takes into account (while using W8.1 or above) the DPI of the current screen, but the underlying methods that capture the screen does not. Here's an old StackOverflow question.
I could partially solve the bug by making the app unaware of the DPI differences between screens, but I forgot it could turn into a giant window while working with => 150%.
I'm not sure how can I solve this. :/
@NickeManarin commented on GitHub (Jan 31, 2017):
You can download version 2.2 (before the fix) to understand what's happening.
@bitcrazed commented on GitHub (Feb 2, 2017):
2.2 looks MUCH better and at least scales vaguely sensibly on my multi-DPI setup ;)
FWIW, the High DPI API docs provide guidance on the different types of DPI support from XP -> 7, 8, 8.1, and now Win10, Win10 Anniversary Update.
One thing we've recently added support for in the Windows Console is better handling of WM_DPICHANGED so that we can select the best fonts & UI elements for the screen the Console is being displayed upon, even if it's dragged around from one screen to the next, or the user changes a display's resolution, orientation, etc.
There are some really great High-DPI improvements coming in Win10 Creators Update too :)
Keep up the great work ;)
@NickeManarin commented on GitHub (Feb 2, 2017):
I understand, but v2.2 won't record properly your screen if you drag the recorder to another window with different DPI.
I'll probably have to follow the "Mixed mode" pattern in order to make only the screen recorder window DPI unaware.