In my iPhone app, I take a picture with the camera, then I want to resize it to 290*390 pixels. I was using this method to resize the image :

UIImage *newImage = [image _imageScaledToSize:CGSizeMake(290, 390)
                         interpolationQuality:1];    

It works perfectly, but it's an undocumented function, so I can't use it anymore with iPhone OS4.

So... what is the simplest way to resize an UIImage ?

link|improve this question

feedback

4 Answers

up vote 84 down vote accepted

The simplest way is to set the frame of your UIImageView and set the contentMode to one of the resizing options.

Or you can use this utility method, if you actually need to resize an image:

+ (UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)newSize {
    //UIGraphicsBeginImageContext(newSize);
    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
    [image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();    
    UIGraphicsEndImageContext();
    return newImage;
}
link|improve this answer
7  
I would NOT retain the result here. newImage will be autoreleased already, and it should up to the method that called this to retain it or not. This approach is just begging for a memory bug since init is not part of the method name. I would expect a method named like this to return an autoreleased object. – Alex Wayne May 23 '10 at 0:01
Valid point, and edited. I'll just leave the caution that my code that uses this generates malloc errors elsewhere without an additional retain, which is clearly my fault somehow :-). – Paul Lynch May 23 '10 at 6:29
Note that using UIGraphicsBeginImageContext is not thread-safe – Oded Ben Dov Aug 30 '10 at 13:45
5  
As of iOS 4.0, the UIGraphics* functions are all thread-safe. – BJ Homer Feb 18 '11 at 21:00
2  
Ah, yes, replace the first line with: UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0); This tells the function to us the current device's pixel scaling factor (and thus accounts for Retina). – elsurudo Apr 3 at 10:30
show 5 more comments
feedback

Trevor Howard has some UIImage categories that handle resize quite nicely. If nothing else you can use the code as examples.

link|improve this answer
+1 for the link. This blog post by Trevor Howard should be bookmarked by everybody. – bddckr Apr 17 '10 at 15:54
2  
I needed to resize some images too, and I first tried out Trevor's additions to UIImage, but got some weird bugs on PNG's (something about the alpha channel). The accepted answer to this question worked out nicely though. – Sorig Nov 2 '10 at 22:11
That is by far the easiest way... +1 – jbat100 Nov 24 '11 at 15:43
This is no longer valid (at least with iOS5.1 – Jann Mar 22 at 17:54
@Jann, have a look at the commits below the post. – vikingosegundo Apr 6 at 21:53
show 1 more comment
feedback

I've also seen this done as well (which I use on UIButtons for Normal and Selected state since buttons don't resize to fit). Credit goes to whoever the original author was.

First make an empty .h and .m file called UIImageResizing.h and UIImageResizing.m

// Put this in UIImageResizing.h
@interface UIImage (Resize)
- (UIImage*)scaleToSize:(CGSize)size;
@end

// Put this in UIImageResizing.m
@implementation UIImage (Resize)

- (UIImage*)scaleToSize:(CGSize)size {
UIGraphicsBeginImageContext(size);

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.0, size.height);
CGContextScaleCTM(context, 1.0, -1.0);

CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, size.width, size.height), self.CGImage);

UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return scaledImage;
}

@end

Include that .h file in whatever .m file you're going to use the function in and then call it like this:

UIImage* image = [UIImage imageName:@"largeImage.png"];
UIImage* smallImage = [image scaleToSize:CGSizeMake(100.0f,100.0f)];
link|improve this answer
Shouldn't the Category name be the same in both .h and .m files? Currently one is (Resize) and the other is (Resizing) – George Sealy Nov 15 '10 at 22:52
good catch, thanks – iWasRobbed Nov 16 '10 at 3:15
feedback

This improvement to Paul's code will give you a sharp high res image on an iPhone with a retina display. Otherwise when scaling down it's blurry.

+ (UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)newSize {
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)]) {
    if ([[UIScreen mainScreen] scale] == 2.0) {
        UIGraphicsBeginImageContextWithOptions(newSize, YES, 2.0);
    } else {
        UIGraphicsBeginImageContext(newSize);
    }
} else {
    UIGraphicsBeginImageContext(newSize);
}
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();    
UIGraphicsEndImageContext();
return newImage;
}
link|improve this answer
Just FYI, the changes you have made are unnecessary, since supplying a value of 0.0 for the scale in UIGraphicsBeginImageContextWithOptions will automatically use the main screen's scale (as of iOS 3.2). – Andrew R. Apr 23 at 3:36
feedback

Your Answer

 
or
required, but never shown

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