Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My code works fine for normal devices but creates blurry images on retina devices.

Does anybody know a solution for my issue?

+ (UIImage *) imageWithView:(UIView *)view
{
    UIGraphicsBeginImageContext(view.bounds.size);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage * img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;
}
share|improve this question
Ugly, in what way? – Marcelo Cantos Dec 2 '10 at 11:05
blurry. It seems to me the right scale got lost... – Daniel Dec 2 '10 at 12:12

3 Answers

up vote 168 down vote accepted

Switch from use of UIGraphicsBeginImageContext to UIGraphicsBeginImageContextWithOptions (as documented on this page). Pass 0.0 for scale (the third argument) and you'll get a context with a scale factor equal to that of the screen.

UIGraphicsBeginImageContext uses a fixed scale factor of 1.0, so you're actually getting exactly the same image on an iPhone 4 as on the other iPhones. I'll bet either the iPhone 4 is applying a filter when you implicitly scale it up or just your brain is picking up on it being less sharp than everything around it.

So, I guess:

+ (UIImage *) imageWithView:(UIView *)view
{
    UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage * img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;
}
share|improve this answer
2  
This works great for me! Thanks. – Daniel Dec 2 '10 at 13:19
Exactly what I was looking for, thank you. – Sander Grout Apr 28 '11 at 11:37
3  
Tommy answer is fine , but you still need to import #import <QuartzCore/QuartzCore.h> to remove renderInContext: warning . – gwdp May 10 '11 at 3:29
1  
@WayneLiu you could specify a scale factor of 2.0 explicitly but you probably wouldn't get exactly an iPhone 4 quality image because any bitmaps that had been loaded would be the standard versions rather than the @2x versions. I don't think there's a solution to that as there's no way to instruct everyone that is currently holding on to a UIImage to reload but force the high resolution version (and you'd likely run up against problems due to the lesser RAM available in pre-retina devices anyway). – Tommy Feb 27 '12 at 19:13
2  
Instead of using the 0.0f for the scale parameter, is it more acceptable to use [[UIScreen mainScreen] scale], it works too. – Adam Carter Aug 14 '12 at 17:06
show 10 more comments

Add this to method to UIView Category

- (UIImage*) capture {
    UIGraphicsBeginImageContext(self.bounds.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [self.layer renderInContext:context];
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;
}
share|improve this answer

Some times drawRect Method makes problem so I got these answers more appropriate. You too may have a look on it Capture UIImage of UIView stuck in DrawRect method

share|improve this answer

Your Answer

 
discard

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

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