up vote 39 down vote favorite
27
share [g+] share [fb]

I have a UIImageView and the objective is to scale it down proportionally by giving it either a height or width.

UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3092/2915896504_a88b69c9de.jpg"]]];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; 

//Add image view
[self.view addSubview:imageView];   

//set contentMode to scale aspect to fit
imageView.contentMode = UIViewContentModeScaleAspectFit;

//change width of frame
CGRect frame = imageView.frame;
frame.size.width = 100;
imageView.frame = frame;

The image did get resized but the position is not at the top left. What is the best approach to scaling image/imageView and how do I correct the position?

link|improve this question

1  
Did the accepted answer really worked for you? It doesn't work for me... – Panagiotis Korros May 4 '09 at 9:36
I have something similar to your code that doesn't work for me "UIImage *image = [UIImage imageNamed:imageString]; UIImageView *imageView = [[UIImage alloc] initWithImage:image];" trows an exeption that kills my app whit this "Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIImage initWithImage:]: unrecognized selector sent to instance 0xd815930'" – Spire Mar 10 '11 at 9:05
feedback

7 Answers

up vote 60 down vote accepted

Fixed easily, once I found the documentation!

 imageView.contentMode = UIViewContentModeScaleAspectFit;
link|improve this answer
2  
Great solution. Beats pasting in 100 lines of code. Thank you! – jocull Dec 1 '10 at 18:40
feedback

I just tried this, and UIImage does not support _imageScaledToSize.

I ended up adding a method to UIImage using a category - a suggestion I found on the Apple Dev forums.

In a project-wide .h -

@interface UIImage (Extras)
- (UIImage *)imageByScalingProportionallyToSize:(CGSize)targetSize;
@end;

Implementation:

@implementation UIImage (Extras)

- (UIImage *)imageByScalingProportionallyToSize:(CGSize)targetSize {

UIImage *sourceImage = self;
UIImage *newImage = nil;

CGSize imageSize = sourceImage.size;
CGFloat width = imageSize.width;
CGFloat height = imageSize.height;

CGFloat targetWidth = targetSize.width;
CGFloat targetHeight = targetSize.height;

CGFloat scaleFactor = 0.0;
CGFloat scaledWidth = targetWidth;
CGFloat scaledHeight = targetHeight;

CGPoint thumbnailPoint = CGPointMake(0.0,0.0);

if (CGSizeEqualToSize(imageSize, targetSize) == NO) {

	CGFloat widthFactor = targetWidth / width;
	CGFloat heightFactor = targetHeight / height;

	if (widthFactor < heightFactor) 
		scaleFactor = widthFactor;
	else
		scaleFactor = heightFactor;

	scaledWidth  = width * scaleFactor;
	scaledHeight = height * scaleFactor;

	// center the image

	if (widthFactor < heightFactor) {
		thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; 
	} else if (widthFactor > heightFactor) {
		thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
	}
}


// this is actually the interesting part:

UIGraphicsBeginImageContext(targetSize);

CGRect thumbnailRect = CGRectZero;
thumbnailRect.origin = thumbnailPoint;
thumbnailRect.size.width  = scaledWidth;
thumbnailRect.size.height = scaledHeight;

[sourceImage drawInRect:thumbnailRect];

newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

if(newImage == nil) NSLog(@"could not scale image");


return newImage ;
}

@end;
link|improve this answer
2  
Apple sdks are very poorly made, simple and common things are avoided as always... – Akash Kava Oct 27 '10 at 15:05
Nice one. I used this, but modified it so the returned image was the size of the scaledWidth and scaledHeight rather then the 'targetSize' Thanks – Critter Apr 12 '11 at 17:28
feedback

You could try making the imageView size match the image. The following code is not tested.

CGSize kMaxImageViewSize = {.width = 100, .height = 100};

CGSize imageSize = image.size;
CGFloat aspectRatio = imageSize.width / imageSize.height;
CGRect frame = imageView.frame;
if (kMaxImageViewSize.width / aspectRatio <= kMaxImageViewSize.height) {
    frame.size.width = kMaxImageViewSize.width;
    frame.size.height = frame.size.width / aspectRatio;
} else {
    frame.size.height = kMaxImageViewSize.height;
    frame.size.width = frame.size.height * aspectRatio;
}
imageView.frame = frame;
link|improve this answer
This worked the best. The accepted answer doesn't actually keep the image at the top like the poster wanted.... – Domness Dec 9 '11 at 22:00
feedback

one can resize an UIImage this way

image = [UIImage imageWithCGImage:[image CGImage] scale:2.0 orientation:UIImageOrientationUp];
link|improve this answer
feedback
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3092/2915896504_a88b69c9de.jpg"]]];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; 


//set contentMode to scale aspect to fit
imageView.contentMode = UIViewContentModeScaleAspectFit;

//change width of frame
//CGRect frame = imageView.frame;
//frame.size.width = 100;
//imageView.frame = frame;

//original lines that deal with frame commented out, yo.
imageView.frame = CGRectMake(10, 20, 60, 60);

...

//Add image view
[myView addSubview:imageView]; 

The original code posted at the top worked well for me in iOS 4.2.

I found that creating a CGRect and specifying all the top, left, width, and height values was the easiest way to adjust the position in my case, which was using a UIImageView inside a table cell. (Still need to add code to release objects)

link|improve this answer
feedback

I think you can do something like

image.center = [[imageView window] center];
link|improve this answer
1  
It will not scale the image but only center it. – yn2 Feb 17 '11 at 15:25
feedback

Here is how you can scale it easily.

This works in 2.x with the Simulator and the iPhone.

UIImage *thumbnail = [originalImage _imageScaledToSize:CGSizeMake(40.0, 40.0) interpolationQuality:1];
link|improve this answer
hi, do you know what the interpolationQuality: parameter does? thanks – user102008 Aug 21 '09 at 21:55
15  
This is an undocumented method (the underscore is a dead giveaway) that could result in app rejection. – Shaggy Frog Oct 18 '09 at 1:08
What does the interpolationQuality parameter do? – lostInTransit Jan 28 '10 at 8:26
feedback

Your Answer

 
or
required, but never shown

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