尝试编写一个Python应用程序,该应用程序从RSS提要中下载图像,并制作合成背景。如何在Mac OS X(豹)上获得当前的桌面分辨率?

最佳答案

使用Pyobjc,类似的东西应该可以工作。 Pyobjc带有豹子。

from AppKit import NSScreen
print(NSScreen.mainScreen().frame())

这样,您还可以捕获宽度和高度。
NSScreen.mainScreen().frame().size.width
NSScreen.mainScreen().frame().size.height

例如:
print("Current screen resolution: %dx%d" % (NSScreen.mainScreen().frame().size.width, NSScreen.mainScreen().frame().size.height))

关于python - 如何通过Python在Mac中获得桌面分辨率?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1281397/

10-15 13:18