我想知道是否有办法从python脚本中获取屏幕大小。
类似问题:
Getting monitor size in python
这个问题告诉你如何通过pygame获取它。有没有办法只用python做到这一点?我需要脚本在几个基于Unix的操作系统上运行。
答案 0 :(得分:2)
我从Finding the workspace size (screen size less the taskbar) using GTK
偷了这个import gtk, pygtk
window = gtk.Window()
screen = window.get_screen()
print "width = " + str(screen.get_width()) + ", height = " + str(screen.get_height())
只是为了让您知道,如果您有多台显示器,屏幕的大小将是所有这些显示器。