码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发--截图UIImage的一部分

时间:2015-04-15 17:10:22      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

不废话,贴代码.这里对图片进行了旋转操作

方法写在UIImage的类别里

- (UIImage *) croppedImage:(CGRect)cropRect {
    CGImageRef croppedCGImage = CGImageCreateWithImageInRect(self.CGImage ,cropRect);
    UIImage *croppedImage = [UIImage imageWithCGImage:croppedCGImage scale:1 orientation:self.imageOrientation];
    CGImageRelease(croppedCGImage);
    
    return croppedImage;
}


iOS开发--截图UIImage的一部分

标签:

原文地址:http://blog.csdn.net/broccoliii/article/details/45060233

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!