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

IOS把图片做成圆形效果

时间:2017-04-17 17:21:47      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:margin   sha   cgimage   gpo   index   with   frame   nbsp   span   

  利用CAShapeLayer能够制作出随意的几何图形,把它作为UIImageView的遮罩,达到把图片做成圆形效果。

 

 

 imgView =  [[UIImageView alloc]initWithFrame:CGRectMake(10, 35, 80, 80)];
    imgView.image = [UIImage imageNamed:@"ma.jpg"];
    UIBezierPath* path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(40, 40) radius:40 startAngle:0 endAngle:2*M_PI clockwise:YES];
    CAShapeLayer* shape = [CAShapeLayer layer];
    shape.path = path.CGPath;
    imgView.layer.mask = shape;
    [self.view addSubview:imgView];

以下在补充一个方法:

[m_photo.layer setCornerRadius:CGRectGetHeight([m_photo bounds]) / 2];//设置圆形半径
    m_photo.layer.masksToBounds = YES;
    m_photo.layer.borderWidth = 1;//设置外环宽度
    m_photo.layer.borderColor = [[UIColor greenColor] CGColor];//设置外环颜色
    m_photo.layer.contents = (id)[[UIImage imageNamed:@"index.png"] CGImage];//设置图片


IOS把图片做成圆形效果

标签:margin   sha   cgimage   gpo   index   with   frame   nbsp   span   

原文地址:http://www.cnblogs.com/zhchoutai/p/6723772.html

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