在Python 中取得顯示器解析度
確定顯示器的解析度是程式設計師的常見任務,尤其是對圖形應用程式.在 Python 中,有多種方法可以實現此目的。
使用 Python 模組
一種簡單的方法涉及使用名為「screeninfo」的第三方 Python 模組。該模組提供了一種獲取顯示器資訊(包括解析度)的簡單方法。
要安裝「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」模組目前支援多顯示器環境,並致力於跨平台。
以上是如何使用 Python 確定顯示器解析度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!