Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Created March 13, 2014 08:15
Show Gist options
  • Save hachinobu/9524141 to your computer and use it in GitHub Desktop.
Save hachinobu/9524141 to your computer and use it in GitHub Desktop.
UIImageのリサイズ方法
//UIImageのリサイズ
- (UIImage *)resizeImage:(UIImage *)image rect:(CGRect)rect
{
UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0.0);
[image drawInRect:rect];
UIImage *resizedImage = UIGraphicsGetImageFromCurrentImageContext();
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
UIGraphicsEndImageContext();
return resizedImage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment