Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created January 2, 2013 12:09
Show Gist options
  • Save jlcampana/4434136 to your computer and use it in GitHub Desktop.
Save jlcampana/4434136 to your computer and use it in GitHub Desktop.
Escalar imagen
+ (UIImage *)scaleImage:(UIImage *)image ToSize:(CGSize)newSize {
//UIGraphicsBeginImageContext(newSize);
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment