Trying to write a python application that downloads images from an RSS feed, and makes a composite background. How do I get the current desktop resolution on Mac OS X (leopard?)

link|improve this question

2  
it's because you use windows features to do stuff instead of cross platform lib. You are locking yourself into a trap. For picture manipulation, use PIL. – e-satis Aug 15 '09 at 9:49
Alan: check this out: developer.apple.com/graphicsimaging/pythonandquartz.html – Koen Bok Aug 15 '09 at 21:36
feedback

3 Answers

up vote 5 down vote accepted

With Pyobjc something like this should work. Pyobjc comes with Leopard.

from AppKit import NSScreen

print NSScreen.mainScreen().frame()
link|improve this answer
Well, ain't that easy – kch Aug 15 '09 at 11:12
Well, thanks for making my rant seem pointless :D – Alan Aug 15 '09 at 16:11
Yeah, pyobjc is quite something. And it's on every mac since Leopard. And remember when actually using this a lot of mac users have more then one screen. So account for that when needed. See Apple's docs on NSScreen for more info. – Koen Bok Aug 15 '09 at 21:34
feedback

If you are doing this from a LaunchAgent script, you may need to drop down to CoreGraphics primitives rather than AppKit-level methods. Working on this today, my LaunchAgent-loaded script gets None back from NSScreen.mainScreen(), but works fine if I load it from a terminal in my session.

from Quartz import CGDisplayBounds
from Quartz import CGMainDisplayID

def screen_size():
    mainMonitor = CGDisplayBounds(CGMainDisplayID())
    return (mainMonitor.size.width, mainMonitor.size.height) 
link|improve this answer
feedback

As usual, using features that are binded to an OS is a very bad idea. There are hundred of portable libs in Python that give you access to that information. The first that comes to my mind is of course pygame :

import pygame
from pygame.locals import *

pygame.init()
screen = pygame.display.set_mode((640,480), FULLSCREEN)
x, y = screen.get_size()

But I guess cocoa do just as good, and therefor wxpython or qt is your friend. I suppose on Windows you did something like this :

from win32api import GetSystemMetrics
width = GetSystemMetrics [0]
height = GetSystemMetrics [1]

Sure it's easier, but won't work on Mac, Linux, BSD, Solaris, and probably nor very later windows version.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.