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

一个简单的创建圆角图像的UIImage扩展实现

时间:2014-11-10 13:45:12      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   os   sp   on   bs   ad   

- (UIImage *)roundedCornerImageWithCornerRadius:(CGFloat)cornerRadius { CGFloat w = self.size.width; CGFloat h = self.size.height; CGFloat scale = [UIScreen mainScreen].scale; // 防止圆角半径小于0,或者大于宽/高中较小值的一半。 if (cornerRadius < 0) cornerRadius = 0; else if (cornerRadius > MIN(w, h)) cornerRadius = MIN(w, h) / 2.; UIImage *image = nil; CGRect imageFrame = CGRectMake(0., 0., w, h); UIGraphicsBeginImageContextWithOptions(self.size, NO, scale); [[UIBezierPath bezierPathWithRoundedRect:imageFrame cornerRadius:cornerRadius] addClip]; [self drawInRect:imageFrame]; image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }

 

一个简单的创建圆角图像的UIImage扩展实现

标签:style   io   color   ar   os   sp   on   bs   ad   

原文地址:http://www.cnblogs.com/yjg2014/p/4086949.html

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