vote up 1 vote down star

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?)

flag

Why the hell is it so damn hard to do the simple things on OS X via a program language? OS X has all kinds of neat apis for graphics, but actually making use of them is like pulling teeth. Can't open a stupid JPEG file and apply a simple monochrome filter to it. Instead I have to jump through several file conversions, all of which are poorly documented. I guess I should blame MSFT for making development easy. Then again, I NEVER have these issues doing python dev on windows. /rant – Alan Aug 15 at 8:42
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 at 9:49
@e-satis: I don't think you understand. If I only want to make an application for the mac, why do I need to use cross platform libraries? I am using PIL now, but here are some fun facts about PIL: 1) Installing PIL from source on leopard doesn't work. You will get errors. 2) Installing PIL from a binary from macpython on leopard doesn't work. You will get errors. It's not really a huge work around, but one is required to get PIL installed on the Mac. Quartz, Core Graphics and Core Imaging are BUILT IN frameworks for OS X. Why shouldn't I use them for a mac only application? – Alan Aug 15 at 16:07
Answer: It's hard because I'm a moron. :D – Alan Aug 15 at 17:07
Alan: check this out: developer.apple.com/graphicsimaging/… – Koen Bok Aug 15 at 21:36

2 Answers

vote up 5 vote down check

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

from AppKit import NSScreen

print NSScreen.mainScreen().frame()
link|flag
Well, ain't that easy – kch Aug 15 at 11:12
Well, thanks for making my rant seem pointless :D – Alan Aug 15 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 at 21:34
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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