BoboTiG / python-mss

An ultra fast cross-platform multiple screenshots module in pure Python using ctypes.
https://pypi.org/project/mss/
MIT License
982 stars 86 forks source link

monitors Width and height errors when two monitors have different DPI #219

Open bluely1978 opened 1 year ago

bluely1978 commented 1 year ago

General information:

>>> sct = mss.mss()
>>> sct.monitors
[
    {'left': -2926, 'top': 0, 'width': 6766, 'height': 2160},
    {'left': 0, 'top': 0, 'width': 3840, 'height': 2160},
    {'left': -2926, 'top': 0, 'width': 2926, 'height': 1646},  # <-- It is actually 2560*1440
]
bluely1978 commented 1 year ago

Sorry, there is an error above, mss version is the latest version 7.01