IOS把图片做成圆形效果

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS把图片做成圆形效果相关的知识,希望对你有一定的参考价值。

  利用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把图片做成圆形效果的主要内容,如果未能解决你的问题,请参考以下文章

createjs 绘制圆形图片

如何把视频片段做成动态图片

本地图片形状做成圆形

在C#的wpf中我需要把button做成圆形而且button控件改变颜色的时候可以发出类似光晕的效果

怎么用美图秀秀将图片的四个角做成这样的圆角?

js怎么做图片切换的渐变效果?