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

加载数据 设置图片圆角方法

时间:2016-08-19 20:51:06      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

 [_iconView sd_setImageWithURL:[NSURL URLWithString:item.image_list] placeholderImage:[UIImage imageNamed:@"defaultUserIcon"] options:SDWebImageCacheMemoryOnly completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {

            // 1.开启图形上下文

            // 比例因素:当前点与像素比例

            UIGraphicsBeginImageContextWithOptions(image.size, NO, 0);

            // 2.描述裁剪区域

            UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, image.size.width, image.size.height)];

            // 3.设置裁剪区域;

            [path addClip];

            // 4.画图片

            [image drawAtPoint:CGPointZero];

            // 5.取出图片

            image = UIGraphicsGetImageFromCurrentImageContext();

            // 6.关闭上下文

            UIGraphicsEndImageContext();

 

            _iconView.image = image;

    }];

 

加载数据 设置图片圆角方法

标签:

原文地址:http://www.cnblogs.com/520lqlst/p/5788858.html

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