Skip to content

Instantly share code, notes, and snippets.

@Marlunes
Marlunes / resize_image
Created July 4, 2013 06:24
RESIZING IMAGE PROPORTIONALLY
/* To call:
resizedImage = [self imageByScalingProportionallyToSize:myImageView.size usingImage:myImage];
*/
//Method:
- (UIImage *)imageByScalingProportionallyToSize:(CGSize)targetSize usingImage:(UIImage *)image{
UIImage *sourceImage = image;