I am trying to get a UIImage from what is displayed in my EAGLView. Any suggestions on how to do this?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

An EAGLView is just a kind of view, and its underlying CAEAGLLayer is just a kind of layer. That means, that the standard approach for converting a view/layer into a UIImage will work. (The fact that the linked question is UIWebview doesn't matter; that's just yet another kind of view.)

link|improve this answer
Thanks for the answer Rob, but I tried the "Standard Method" and it did not work. Even though my EAGLView is correctly displaying a texture loaded to it, the only UIImage I have been able to extract from it using the STANDARD APPROACH is one with a blank white color, which is exactly how the EAGLView appears in IB. This is strange, indeed, seeing how EAGLView is just a kind of UIView. I think maybe I need to use glReadPixels or something instead? I am working with an EAGLView from the Apple Sample Code GLImageProcessing example. – RexOnRoids Aug 30 '09 at 3:31
Eh... I really did speak too fast. OpenGL doesn't render the same way as Quartz. Sorry about that. I believe this thread will address your problem. Read through all the messages; he works out several bugs along the way. I'm assuming you already know how to deal with a CGContext and get a CGImage out of it (and a UIImage from that). lists.apple.com/archives/mac-opengl/2006//jan/msg00085.html – Rob Napier Aug 30 '09 at 4:09
feedback

Here is a cleaned up version of Quakeboy's code. I tested it on iPad, and works just fine. The improvements include:

  • works with any size EAGLView
  • works with retina display (point scale 2)
  • replaced nested loop with memcpy
  • cleaned up memory leaks
  • saves the UIImage in the photoalbum as a bonus.

Use this as a method in your EAGLView:

-(void)snapUIImage
{
    int s = 1;
    UIScreen* screen = [ UIScreen mainScreen ];
    if ( [ screen respondsToSelector:@selector(scale) ] )
        s = (int) [ screen scale ];

    const int w = self.frame.size.width;
    const int h = self.frame.size.height;
    const NSInteger myDataLength = w * h * 4 * s * s;
    // allocate array and read pixels into it.
    GLubyte *buffer = (GLubyte *) malloc(myDataLength);
    glReadPixels(0, 0, w*s, h*s, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
    // gl renders "upside down" so swap top to bottom into new array.
    // there's gotta be a better way, but this works.
    GLubyte *buffer2 = (GLubyte *) malloc(myDataLength);
    for(int y = 0; y < h*s; y++)
    {
        memcpy( buffer2 + (h*s - 1 - y) * w * 4 * s, buffer + (y * 4 * w * s), w * 4 * s );
    }
    free(buffer); // work with the flipped buffer, so get rid of the original one.

    // make data provider with data.
    CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, buffer2, myDataLength, NULL);
    // prep the ingredients
    int bitsPerComponent = 8;
    int bitsPerPixel = 32;
    int bytesPerRow = 4 * w * s;
    CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
    CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
    CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
    // make the cgimage
    CGImageRef imageRef = CGImageCreate(w*s, h*s, bitsPerComponent, bitsPerPixel, bytesPerRow, colorSpaceRef, bitmapInfo, provider, NULL, NO, renderingIntent);
    // then make the uiimage from that
    UIImage *myImage = [ UIImage imageWithCGImage:imageRef scale:s orientation:UIImageOrientationUp ];
    UIImageWriteToSavedPhotosAlbum( myImage, nil, nil, nil );
    CGImageRelease( imageRef );
    CGDataProviderRelease(provider);
    CGColorSpaceRelease(colorSpaceRef);
    free(buffer2);
}
link|improve this answer
The above code was missing matching releases for the colorspace and data provider, so I've added those at the end of the method to prevent leaks. – Brad Larson Nov 25 '11 at 21:26
Also, buffer2 does indeed need to be freed manually to avoid a leak. This has also been fixed. – Brad Larson Nov 25 '11 at 21:50
I have tried this but always creates a black image with no drawing, what may I be doing wrong? – Brodie Mar 24 at 19:22
feedback
-(UIImage *) saveImageFromGLView
{
    NSInteger myDataLength = 320 * 480 * 4;
    // allocate array and read pixels into it.
    GLubyte *buffer = (GLubyte *) malloc(myDataLength);
    glReadPixels(0, 0, 320, 480, GL_RGBA, GL_UNSIGNED_BYTE, buffer);
    // gl renders "upside down" so swap top to bottom into new array.
    // there's gotta be a better way, but this works.
    GLubyte *buffer2 = (GLubyte *) malloc(myDataLength);
    for(int y = 0; y <480; y++)
    {
        for(int x = 0; x <320 * 4; x++)
        {
            buffer2[(479 - y) * 320 * 4 + x] = buffer[y * 4 * 320 + x];
        }
    }
    // make data provider with data.
    CGDataProviderRef provider = CGDataProviderCreateWithData(NULL, buffer2, myDataLength, NULL);
    // prep the ingredients
    int bitsPerComponent = 8;
    int bitsPerPixel = 32;
    int bytesPerRow = 4 * 320;
    CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB();
    CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
    CGColorRenderingIntent renderingIntent = kCGRenderingIntentDefault;
    // make the cgimage
    CGImageRef imageRef = CGImageCreate(320, 480, bitsPerComponent, bitsPerPixel, bytesPerRow, colorSpaceRef, bitmapInfo, provider, NULL, NO, renderingIntent);
    // then make the uiimage from that
    UIImage *myImage = [UIImage imageWithCGImage:imageRef];

    CGImageRelease( imageRef );
    CGDataProviderRelease(provider);
    CGColorSpaceRelease(colorSpaceRef);
    free(buffer2);

    return myImage;
}
link|improve this answer
The above code has a few leaks in it, so I'd highly recommend using the more efficient code provided in Bram's answer instead. – Brad Larson Nov 25 '11 at 21:27
2  
I went ahead and incorporated the more critical memory leak fixes from Bram's code, just in case future developers copy and paste this code into their own applications. – Brad Larson Nov 25 '11 at 21:56
Thank you for fixing the leaks! – Quakeboy Nov 30 '11 at 18:24
feedback

protected by Community Dec 7 '11 at 1:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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