Created
February 12, 2014 17:49
-
-
Save carlosmcevilly/8960812 to your computer and use it in GitHub Desktop.
Scaling a UIImage. Use in a category on UIImage.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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