up vote 1 down vote favorite
3
share [g+] share [fb]

Is it possible in objective C that we can take the screen shot in objective c and stored this image in UIImage.

link|improve this question

49% accept rate
1  
possible duplicate stackoverflow.com/questions/2214957/… – Anders K Aug 31 '10 at 15:35
possible duplicate of How to take a screenshot programmatically – Brad Larson Sep 1 '10 at 16:03
feedback

4 Answers

up vote 2 down vote accepted

You need to create a bitmap context of the size of your screen and use

[self.view.layer renderInContext:c]

to copy your view in it. Once this is done, you can use

CGBitmapContextCreateImage(c)

to create a CGImage from your context.

Elaboration :

CGSize screenSize = [[UIScreen mainScreen] applicationFrame].size;
CGColorSpaceRef colorSpaceRef = CGColorSpaceCreateDeviceRGB(); 
CGContextRef ctx = CGBitmapContextCreate(nil, screenSize.width, screenSize.height, 8, 4*(int)screenSize.width, colorSpaceRef, kCGImageAlphaPremultipliedLast);
CGContextTranslateCTM(ctx, 0.0, screenSize.height);
CGContextScaleCTM(ctx, 1.0, -1.0);

[(CALayer*)self.view.layer renderInContext:ctx];

CGImageRef cgImage = CGBitmapContextCreateImage(ctx);
UIImage *image = [UIImage imageWithCGImage:cgImage];
CGImageRelease(cgImage);
CGContextRelease(ctx);  
[UIImageJPEGRepresentation(image, 1.0) writeToFile:@"screen.jpg" atomically:NO];

Note that if you run your code in response to a click on a UIButton, your image will shows that button pressed.

link|improve this answer
Can you elaborate here? Thanx – alis Sep 1 '10 at 14:27
feedback

The previous code assumes that the view to be captured lives on the main screen...it might not.

Would this work to always capture the content of the main window? (warning: compiled in StackOverflow)


- (UIImage *) captureScreen {
    UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
    CGRect rect = [keyWindow bounds];
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [keyWindow.layer renderInContext:context];   
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;
}
link|improve this answer
I animate graphics in the view but this code ignores animation (not removed after completed) – Tibidabo Jan 5 at 5:30
feedback

Technical Q&A QA1703 Screen Capture in UIKit Applications

http://developer.apple.com/iphone/library/qa/qa2010/qa1703.html

link|improve this answer
feedback

Yes, here's a link to the Apple Developer Forums https://devforums.apple.com/message/149553

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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