下面的代码用于获取屏幕大小,并输出屏幕的宽和高。
from PySide6.QtWidgets import QApplication from PySide6.QtGui import QGuiApplication QApplication() screen = QGuiApplication.primaryScreen().geometry() # 获取屏幕类并调用geometry()方法获取屏幕大小 width = screen.width() # 获取屏幕的宽 height = screen.height() # 获取屏幕的高 print(width, height) # 输出屏幕的宽和高
有几个需要注意的点:
第一是使用的 QGuiApplication.primaryScreen()方法获取的只是主屏幕的屏幕大小,如果要获取其他屏幕的大小,请考虑QGuiApplication.screens()。
第二是这里获取的屏幕大小是被缩放过的大小,比如我电脑125%的缩放,1920*1080的屏幕大小,在程序中获得的屏幕大小是1536*864,需要还原的话直接乘个缩放倍数1.25就行。