Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using following contents to take screenshot of opengl content. It is generating screenshot correctly for landscape orientation but screenshot in portrait orientation is again in landscape mode with half of the upper image black. can anybody help me convert this code into portrait as well?

UIImage *outputImage = nil;
    CGFloat scale = 1.0;
    if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]) {
        scale = [[UIScreen mainScreen] scale];
    }
    VideoPlaybackAppDelegate *delegate = (VideoPlaybackAppDelegate *)[UIApplication sharedApplication].delegate;
    CGRect s;
    UIViewController *contr = (UIViewController *)delegate.arParentViewController;
    if (UIDeviceOrientationIsLandscape(contr.interfaceOrientation)) {
        s = CGRectMake(0, 0, 480.0f * scale, 320.0f * scale);
    }
    else if (UIDeviceOrientationIsPortrait(contr.interfaceOrientation)) {
        s = CGRectMake(0, 0, 320.0f * scale, 480.0f * scale);
    }

    uint8_t *buffer = (uint8_t *) malloc(s.size.width * s.size.height * 4);

    glReadPixels(0, 0, s.size.width, s.size.height, GL_RGBA, GL_UNSIGNED_BYTE, buffer);   

    CGDataProviderRef ref = CGDataProviderCreateWithData(NULL, buffer, s.size.width * s.size.height * 4, NULL);

    CGImageRef iref = CGImageCreate(s.size.width, s.size.height, 8, 32, s.size.width * 4, CGColorSpaceCreateDeviceRGB(), kCGBitmapByteOrderDefault, ref, NULL, true, kCGRenderingIntentDefault);      

    size_t width = CGImageGetWidth(iref);   
    size_t height = CGImageGetHeight(iref);   
    size_t length = width * height * 4;           
    uint32_t *pixels = (uint32_t *)malloc(length);

    CGContextRef context = CGBitmapContextCreate(pixels, width, height, 8, width * 4,   
                                                 CGImageGetColorSpace(iref), kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Big);          

    CGAffineTransform transform = CGAffineTransformIdentity;   
    transform = CGAffineTransformMakeTranslation(0.0f, height);   
    transform = CGAffineTransformScale(transform, 1.0, -1.0);   
    CGContextConcatCTM(context, transform);           
    CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, width, height), iref);        
    CGImageRef outputRef = CGBitmapContextCreateImage(context);

    outputImage = [UIImage imageWithCGImage: outputRef];

    CGDataProviderRelease(ref);  
    CGImageRelease(iref);   
    CGContextRelease(context);   
    CGImageRelease(outputRef);
    free(pixels);
    free(buffer);

    return outputImage;
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.