Skip to content

Instantly share code, notes, and snippets.

@jeksys
Created July 8, 2011 19:15
Show Gist options
  • Save jeksys/1072578 to your computer and use it in GitHub Desktop.
Save jeksys/1072578 to your computer and use it in GitHub Desktop.
scaleImage
- (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