美文网首页
图片切圆角采用贝塞尔曲线

图片切圆角采用贝塞尔曲线

作者: ymhlbj | 来源:发表于2018-11-22 13:39 被阅读9次

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
imageView.image = [UIImage imageNamed:@"15326966981"];
//开始对imageView进行画图
UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 0.0);
//使用贝塞尔曲线画出一个圆形图
[[UIBezierPath bezierPathWithRoundedRect:imageView.bounds cornerRadius:imageView.frame.size.width] addClip];
[imageView drawRect:imageView.bounds];
imageView.image = UIGraphicsGetImageFromCurrentImageContext();
//结束画图
UIGraphicsEndImageContext();
[self.view addSubview:imageView];

相关文章

网友评论

      本文标题:图片切圆角采用贝塞尔曲线

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