vote up 0 vote down star
1

I need to be able to identify a single window on the user's screen and take a screen capture of it. The screen data is to be stored in memory and not written to disk.

This is already supported through the commandline tool /usr/sbin/screencapture or through the Grab utility (though their functionality is not extensive enough to justify me launching them as a subprocess).

References / Hints

  • nm /usr/sbin/screencapture returns private Cocoa interfaces including _CGSGetSharedWindow that appear to do this.
  • Third party application Snapzpro does this (but does not provide source code)
flag

67% accept rate
1  
i would advise against using Carbon - its pretty much on its way to being completely deprecated – zPesk Jul 5 at 23:00

3 Answers

vote up 5 vote down check

Mac OS X 10.5 introduced the Quartz Window Services API to do just this.

link|flag
This does the trick. A short Google provided sample code, rigged with profiling. developer.apple.com/samplecode/SonOfGrab/… – sludge Jul 6 at 15:14
vote up -3 vote down

Command+Shift+4 to activate the screenshot selection, then tap the space bar to select the whole window.

link|flag
vote up 0 vote down

The first thing that came to mind was GrabFS from MacFuse. The source is here.

link|flag

Your Answer

Get an OpenID
or

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