在 Python 中确定显示器分辨率
获取连接到 Python 支持的系统的显示器的分辨率可以是一个简单的过程,只需使用正确的方法工具。其中一种资源是 screeninfo 模块,可通过 PyPI 获取。
入门
要使用 screeninfo 模块,请首先使用 pip 安装它:
pip install screeninfo
安装后,这里有一个简单的代码片段,演示如何显示所有连接的分辨率监视器:
from screeninfo import get_monitors for m in get_monitors(): print(str(m))
示例输出
运行此代码将生成类似于以下内容的输出:
Monitor(x=3840, y=0, width=3840, height=2160, width_mm=1420, height_mm=800, name='HDMI-0', is_primary=False) Monitor(x=0, y=0, width=3840, height=2160, width_mm=708, height_mm=399, name='DP-0', is_primary=True)
优点screeninfo
screeninfo 模块提供了几个优点:
以上是如何使用 Python 确定显示器分辨率?的详细内容。更多信息请关注PHP中文网其他相关文章!