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
drawInRectto 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