博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第三篇、image 设置圆角的几种方式
阅读量:6294 次
发布时间:2019-06-22

本文共 1175 字,大约阅读时间需要 3 分钟。

第一种:

就拿view来举例view.layer.masksToBounds=YES; //设置为yes,就可以使用圆角view.layer.cornerRadius= 5; //设置它的圆角大小view.layer.borderWidth=1; //视图的边框宽度view.layer.borderdg= [[UIdggray  dg].CGdg]; //视图的边框颜色

 

第二种:

//初始化CAShapeLayer    CAShapeLayer *shapeLayer = [CAShapeLayer layer];    //设置shapeLayer路径和圆角弧度    shapeLayer.path = [UIBezierPath bezierPathWithRoundedRect:                       self.imageView.bounds cornerRadius:40].CGPath;    //设置ImageView的蒙版    self.imageView.layer.mask = shapeLayer;

第三种:

-(UIImage *)getImageRadius:(CGFloat)radius andImage:(UIImage *)image{    CGFloat scale = [UIScreen mainScreen].scale;    UIGraphicsBeginImageContextWithOptions(image.size, NO, scale);    CGContextRef c = UIGraphicsGetCurrentContext();    CGRect rect = CGRectMake(0, 0, image.size.width, image.size.height);    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:radius];    CGContextAddPath(c, path.CGPath);    CGContextClip(c);    [image drawInRect:rect];    CGContextDrawPath(c, kCGPathFillStroke);    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();    UIGraphicsEndImageContext();    return img;}

 

转载于:https://www.cnblogs.com/HJQ2016/p/5978667.html

你可能感兴趣的文章
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>