获得监视器分辨率的最简单方法是什么(最好在元组中)?
在 Windows 上:
from win32api import GetSystemMetrics print("Width =", GetSystemMetrics(0)) print("Height =", GetSystemMetrics(1))
如果您使用的是高分辨率屏幕,请确保您的 python 解释器是 HIGHDPIAWARE。
基于这篇文章。