Skip to content

Instantly share code, notes, and snippets.

@carlosmcevilly
Created February 12, 2014 17:49
Show Gist options
  • Save carlosmcevilly/8960812 to your computer and use it in GitHub Desktop.
Save carlosmcevilly/8960812 to your computer and use it in GitHub Desktop.
Scaling a UIImage. Use in a category on UIImage.
/* from Bill Dudney's Practical Drawing session at 2011 WWDC */
+ (UIImage *)scaleImage:(UIImage *)image toSize:(CGSize)newSize {
UIGraphicsBeginImageContextWithOptions(newSize, YES, 0.0);
CGRect imageRect = {{0.0, 0.0}, newSize};
[image drawInRect:imageRect];
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment