Created
August 24, 2014 09:18
-
-
Save yoshimin/4a8f697d3cc5cb7a2379 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CGImageRef srcImageRef = self.imageView.image.CGImage; | |
CGImageRef croppedImageRef = CGImageCreateWithImageInRect(srcImageRef, [切り取る枠のCGRectを指定]); | |
UIImage *croppedImage = [UIImage imageWithCGImage:croppedImageRef]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment