在python中获取屏幕大小

时间:2010-07-30 22:11:39

标签: python monitor

  

可能重复:
  How do I get Monitor resolution in Python?

我想知道是否有办法从python脚本中获取屏幕大小。

类似问题:

Getting monitor size in python

这个问题告诉你如何通过pygame获取它。有没有办法只用python做到这一点?我需要脚本在几个基于Unix的操作系统上运行。

1 个答案:

答案 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())

只是为了让您知道,如果您有多台显示器,屏幕的大小将是所有这些显示器。