美文网首页
设置图片圆角

设置图片圆角

作者: 喵小帅 | 来源:发表于2016-04-13 13:58 被阅读36次
    UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
        
        imageView.image=[UIImage imageNamed:@"8]Q_K%3RKSEU)W4BB2ZP6GF.jpg"];
        //开始对imageview进行画图
        UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 1.0);
        //使用贝塞尔曲线画出一个圆形图
        [[UIBezierPath bezierPathWithRoundedRect:imageView.bounds cornerRadius:imageView.frame.size.width] addClip];
        [imageView drawRect:imageView.bounds];
        
        imageView.image=UIGraphicsGetImageFromCurrentImageContext();
        //结束画图
        UIGraphicsEndPDFContext();
        [self.view addSubview:imageView];
    

    相关文章

      网友评论

          本文标题:设置图片圆角

          本文链接:https://www.haomeiwen.com/subject/brnwlttx.html