码迷,mamicode.com
首页 > 其他好文 > 详细

图片分割

时间:2015-04-16 19:24:00      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

- (UIImage *)clipImage: (UIImage *)image inRect: (CGRect) rect

{//返回image中rect范围内的图片

    CGImageRef imageRef = CGImageCreateWithImageInRect(image.CGImage, rect);

    UIImage *subImage = [UIImage imageWithCGImage:imageRef];

    return subImage;

}

图片分割

标签:

原文地址:http://www.cnblogs.com/y16879w/p/4432686.html

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