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

I've seen:

  • Accusations that various UIImage resizing code is wrong and has bugs
  • Resizing code which comes out with low quality images
  • Resizing code which flips the image
  • Resizing code which doesn't work correctly on portrait camera photos specifically

Is there a piece of code for resizing/cropping a UIImage that somebody could recommend?

share|improve this question
1  
How about you include the code of each points such that we know what to even recommend? As of now, I have a block of code that I am happy with. I do not want to answer because I do not know what you categorized as good or bad. – Byte Jun 1 '12 at 19:09
1  
It is not that bad or unreasonable a question. There is a lot of poor code/bad approaches on SO for common tasks like cropping an image. And fwiw - SO is implicitly a recommendation engine given the voting, etc. A feature I would like to see here is a way to promote and finalize solutions to a wiki where common tasks can be hashed out in one place rather than the litter of questions as there is now. – skinnyTOD Jun 1 '12 at 19:12
@skinnyTOD That is a wonderful point and a fantastic idea. A site which states it isn't about recommendation but yet lets users vote things up and down? And the way you have to think about wording when searching, to match what people may have written, is something you shouldn't have to worry about. A wiki of knowledge off the back of questions would fit right in. – Andrew Jun 1 '12 at 19:56
I dont think this is actually a bad question, and indeed I have had to deal with this in the past. Here is a great site talking about this same issue. From StackOverflow: stackoverflow.com/questions/612131/… and vocaro.com/trevor/blog/2009/10/12/… – trumpetlicks Jun 1 '12 at 20:24
I found the standard iOS method of UIImage's drawInRect to be really solid, but you need to do some slight of hand if the new size is a different aspect ratio than your original image if you don't want it skewed. And if you want to preserve the aspect ratio, you need to determine whether you want it to fill or to fit. Anyway, see my answer below to address this problem. – Rob Jun 2 '12 at 3:49

closed as not constructive by H2CO3, ikinci viking, Paul.s, Shaggy Frog, Graviton Jun 2 '12 at 4:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

I use this category, which is a category that provides UIImage a series of resizing methods, which effectively supports UIViewContentModeScaleToFill, UIViewContentModeScaleAspectFill, and UIViewContentModeScaleAspectFit. References to what I tried and what I based this upon are in the comments of the .m file. By the way, while vocaro's suggestion sounds incredibly compelling, I found that it fails in a lot of non-standard files (e.g. not simple RGB images). I'm getting my images from an old archive with a ton of different image formats, thus I evolved to this solution. I use it primarily for creating my thumbnail images (using my scaleImageToSizeAspectFill) and do this with images of varying formats without incident.

UIImage+SimpleResize.h:

//
//  UIImage+SimpleResize.h
//
//  Created by Robert Ryan on 5/19/11.
//

#import <Foundation/Foundation.h>


@interface UIImage (SimpleResize)

- (UIImage*)scaleImageToSizeFill:(CGSize)newSize;
- (UIImage*)scaleImageToSizeAspectFill:(CGSize)newSize;
- (UIImage*)scaleImageToSizeAspectFit:(CGSize)newSize;

@end

UIImage+SimpleResize.m:

//
//  UIImage+SimpleResize.m
//
//  Created by Robert Ryan on 5/19/11.
//
//  Got the basic idea at http://ofcodeandmen.poltras.com/2008/10/30/undocumented-uiimage-resizing/
//  but had to rewrite to support AspectFill and AspectFit modes.
//
//  By the way, I was enticed by http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/
//  but it turns out that those routines just don't handle some stranger file formats (CMYK, etc.) well
//  because it tries to create a new context that mirrors the one of the image, some of which the 
//  CGBitmapContextCreate() just chokes on.
//
//  I'm sure there are richer implementations, but my solution has benefit of being simple, and it works.

#import "UIImage+SimpleResize.h"

@implementation UIImage (SimpleResize)

- (UIImage *)cropWithinBounds:(CGRect)bounds 
{
    CGImageRef imageRef = CGImageCreateWithImageInRect([self CGImage], bounds);
    UIImage *croppedImage = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);
    return croppedImage;
}

- (UIImage*)scaleImageToSizeFill:(CGSize)newSize
{
    UIGraphicsBeginImageContext(newSize);
    [self drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
    UIImage* image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return image;
}

- (UIImage*)scaleImageToSize:(CGSize)newSize contentMode:(UIViewContentMode)contentMode
{
    if (contentMode == UIViewContentModeScaleToFill)
    {
        return [self scaleImageToSizeFill:newSize];
    }
    else if ((contentMode == UIViewContentModeScaleAspectFill) || 
             (contentMode == UIViewContentModeScaleAspectFit))
    {
        CGFloat horizontalRatio   = self.size.width  / newSize.width;
        CGFloat verticalRatio     = self.size.height / newSize.height;
        CGFloat ratio;

        if (contentMode == UIViewContentModeScaleAspectFill)
            ratio = MIN(horizontalRatio, verticalRatio);
        else
            ratio = MAX(horizontalRatio, verticalRatio);

        CGSize  sizeForAspectScale = CGSizeMake(self.size.width / ratio, self.size.height / ratio);

        UIImage *image = [self scaleImageToSizeFill:sizeForAspectScale];

        // if we're doing aspect fill, then the image still needs to be cropped

        if (contentMode == UIViewContentModeScaleAspectFill)
        {
            CGRect  subRect = CGRectMake(floor((sizeForAspectScale.width - newSize.width) / 2.0), 
                                         floor((sizeForAspectScale.height - newSize.height) / 2.0), 
                                         newSize.width, 
                                         newSize.height);
            image = [image cropWithinBounds:subRect];
        }

        return image;
    }

//    NSLog(@"%s unknown contentMode %d", __FUNCTION__, contentMode);
    return nil;
}

- (UIImage*)scaleImageToSizeAspectFill:(CGSize)newSize
{
    return [self scaleImageToSize:newSize contentMode:UIViewContentModeScaleAspectFill];
}

- (UIImage*)scaleImageToSizeAspectFit:(CGSize)newSize
{
    return [self scaleImageToSize:newSize contentMode:UIViewContentModeScaleAspectFit];
}

@end
share|improve this answer

If you are talking about just the UIImage which doesnt contain metadata its just a matter of starting creating a graphics context and calling the uiimage draw in context method:

- (UIImage*)resizeImage:(UIImage*)jpeg withSize:(CGSize)newSize
{   
    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
    [jpeg drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
    UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();    
    UIGraphicsEndImageContext();

    return resizedImage;
}

IF what you want is to resize images that contain metadata like read from the disk or something, perform the previews method and when re-saving use the original source dictionary.

share|improve this answer

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