CocoaDev

Edit AllPages

I need to take a picture of the screen and load it into an NSImage or some derivation of that. Right now I am using NSTask and the “screencapture” command line utility. Is there another way because this way sucks. Thanks. http://goo.gl/Cx9sQ


This works fairly well for me and takes a surprisingly little amount of code - and best of all, it’s 100% Cocoa. The downside is that it’s slow if you are trying to capture the entire screen.

You might need to use some Carbon if you want to get the best results. I believe Apple had some sample code on how to do this, but I can’t find it at the moment.

– RyanBates


Thank you Ryan. I tried your code and it is very cool but a little too slow for my needs (the whole screen). But that is a very helpful snippet. With your permission I would like to post it to http://osnippets.org/. I ended up just using NSTask and screencapture. I made sure that the task was finished before proceeding with my screensaver. I wanted to basically freeze the screen by displaying a screenshot of the computer right before the screensaver activated but I kept getting part of the fade in the screenshot. Now it just takes a second to activate. As soon as I post it for download I will post a link in here or something. Hm, I just noticed that link you (or someone else) gave me. I am at school on a PeeCee so I can’t try it, but I will try it when I get home. Thanks! -Zac


Credit for the code given above goes to Ben Haller from Stick Software. So, it would be most appropriate to ask him for permission to post it on osnippets.org. See his post at: http://cocoa.mamasam.com/MACOSXDEV/2002/02/1/24720.php

– RyanBates


Man, the code in the above link in the original post is great. It is lightning fast for the entire screen. I haven’t put it into my program yet, but I will later. I still can’t get over how fast it is. Less than a second for the entire screen!! -Zac


Apple’s sample code has been deprecated. Exactly why it was deprecated is unclear, but it’s now in their archive section at http://developer.apple.com/samplecode/Sample_Code/Archive/Graphics/glGrab.htm. “This sample shows how to use OpenGL to grab the contents of the screen via a DMA transfer to reduce the load on the CPU.”


glGrab is by far the fastest grabbing routine I’ve come across. With a bit of hacking around I’ve managed to take a 1024*768 screendump and map it onto a gl quad in 0.11 seconds (with the addition of Apple’s GL extensions ofcourse). -ascii


There’s also the Snapshot ( http://developer.apple.com/samplecode/Sample_Code/Archive/Graphics/Snapshot.htm ) and Super Snapshot ( http://developer.apple.com/samplecode/Sample_Code/Archive/Graphics/SuperSnapshot.htm ) archived examples.


Does anybody have a saved copy of the GLGrab example?


I’ve been fiddling with various carbon screen shot examples trying to find an alternative to the method posted above. I finally came up with this method:

This basically does the same thing as the above code, but it uses QuickDraw functions to capture the screen which are much faster. However, because it’s QuickDraw, the point of origin (0,0) is at the top left of the screen instead of the bottom left. I didn’t have to add the Carbon framework to my target, but you may need to if you get compilation errors. – RyanBates

How fast? I would like to make a program that can capture “screen movies” (like SnapzPro – the reviews on that page are not really accurate) at 10 fps or better…but I can’t find a way to take frames that fast. The only alternative seems to be moving the mouse reeeeaaaaallllllyyyy ssssllllloooowwwllllllyyyyyy –JediKnil

It depends on the resolution and the speed of the computer. Testing it on a 733 Mhz G4 (yes, I know it’s old), it takes about 0.3 seconds to capture at 1024 x 768. That glGrab example was probably faster, if only someone had a copy of it. I remember trying it out a while ago, but can’t find it anywhere now. – RyanBates

No time to check right now, but is this glGrab? –JediKnil

http://developer.apple.com/samplecode/Carbon_GLSnapshot/Carbon_GLSnapshot.html

No, it appears that just captures an OpenGL view and not the screen. – RyanBates


I dug around the web a while ago and found the glGrab in some obscure ftp repository. I copy below the essential part of the glGrab routine. I hope this helps everyone ! at least glGrab is very fast, but not as fast as SnapzPro… I’m not sure why Apple engineer decided to remove this from their sample code list. It may be in conflict with Quartz (2D) extreme, but this is only my naive guess. One sure thing is that this won’t run properly on Intel Macs, due to endian issues :-)

/*

*

Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software.

In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple’s copyrights in this original Apple software (the “Apple Software”), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated.

The Apple Software is provided by Apple on an “AS IS” basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.

IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */

#import “glGrabController.h” #import <ApplicationServices/ApplicationServices.h> #import

@implementation glGrabController

static inline void swapcopy32(void * src, void * dst, int bytecount ) { uint32_t *srcP; uint32_t *dstP; uint32_t p0, p1, p2, p3; uint32_t u0, u1, u2, u3;

srcP = src;
dstP = dst; #define SWAB_PIXEL(p) (((p) << 8) | ((p) >> 24)) /* ppc rlwinm opcode results */
while ( bytecount >= 16 )
{
    /*
     * Blatent hint to compiler that we want
     * strength reduction, pipelined fetches, and
     * some instruction scheduling, please.
     */
    p3 = srcP[3];
    p2 = srcP[2];
    p1 = srcP[1];
    p0 = srcP[0];
    
    u3 = SWAB_PIXEL(p3);
    u2 = SWAB_PIXEL(p2);
    u1 = SWAB_PIXEL(p1);
    u0 = SWAB_PIXEL(p0);
    srcP += 4;

    dstP[3] = u3;
    dstP[2] = u2;
    dstP[1] = u1;
    dstP[0] = u0;
    bytecount -= 16;
    dstP += 4;
}
while ( bytecount >= 4 )
{
    p0 = *srcP++;
    bytecount -= 4;
    *dstP++ = SWAB_PIXEL(p0);
} }

static void swizzleBitmap(NSBitmapImageRep * bitmap) { int top, bottom; void * buffer; void * topP; void * bottomP; void * base; int rowBytes;

rowBytes = [bitmap bytesPerRow];
top = 0;
bottom = [bitmap pixelsHigh] - 1;
base = [bitmap bitmapData];
buffer = malloc(rowBytes);

while ( top < bottom )
{
    topP = (top * rowBytes) + base;
    bottomP = (bottom * rowBytes) + base;
    
    /* Save and swap scanlines */
    swapcopy32( topP, buffer, rowBytes );
    swapcopy32( bottomP, topP, rowBytes );
    bcopy( buffer, bottomP, rowBytes );
    
    ++top;
    --bottom;
}
free( buffer ); }

@end

If you like, I can post the entire sample code package on my web site. (The license at the top of the file explicitly says we can redistribute at will.) E-mail me at mike@mikeash.com if you’re interested. – MikeAsh


I replaced ‘(NSString *)CFSTR(“tiff”)’ with ‘@”tiff”’ – there’s no need to use CFStrings in Cocoa code like that. :) - JonathanGrynspan


I am curious whether there is a way to capture screen as fast as SnapzPro , or which technology did SnapzPro adopt to achieve such speed? Is there anybody want to discuss?

How does remote descktop work ? If remote descktop can work at near real time then all that is needed is a way to redirect remote desktop to a movie.


It looks like Apple recently posted an updated OpenGL screen shot example to http://developer.apple.com/samplecode/OpenGLScreenSnapshot/index.html

However, there is a note in the READ ME for that example that says that glReadPixels() (which the example uses) is simple, but not very efficient. There’s more information about an alternative approach using asynchronous texture fetching at http://developer.apple.com/technotes/tn2004/tn2093.html#TNTAG9 and http://developer.apple.com/documentation/GraphicsImaging/Conceptual/OpenGL-MacProgGuide/opengl_texturedata/chapter_10_section_6.html#//apple_ref/doc/uid/TP40001987-CH407-SW13


As for how remote desktop works… I’d expect that instead of capturing the entire display, it uses something comparable to CGRegisterScreenRefreshCallback() to only be notified about discrete screen updates and pass those along. Although remote desktop is not open source, Chicken of the VNC is… so you could always check http://sourceforge.net/projects/cotvnc/ for ideas (but note the GPL license). [Update: scratch that… Chicken is only a VNC client, not a server.]


Sample code that uses the more efficient asynchronous texture fetching to grab the screen can be found in the FrameReader class of the Composer QCTV example at http://developer.apple.com/samplecode/QuartzComposer_WWDC_QCTV/index.html


Probably want to include a release of rep after adding it to the NSImage in the code at the top to avoid a leak. -tm


The latest sample code shows how to use FrameReader to capture OpenGL to a quicktime movie. http://developer.apple.com/samplecode/OpenGLScreenCapture/index.html

— KelvinNishikawa–

Check out CGWindow.h for some cool new ways to capture individual windows and the screen. There’s also some new sample code up called “Son of Grab” at http://developer.apple.com/samplecode/SonOfGrab/index.html

Quick example I just typed up:

// add in an NSImage category


Here is a quick (i.e. untested) example of how to capture the screen beneath a window, which is useful if you want to have a faux transparent window that does something with the image underneath (like FlySketch), or a window that applies a filter to achieve an interesting visual effect (like the semi-transparent blur applied by menus in Leopard).