首页 > 代码库 > 处理圆形图片(如头像)
处理圆形图片(如头像)
// self.profileImageView.layer.cornerRadius = self.profileImageView.width * 0.5; // self.profileImageView.layer.masksToBounds = YES;
//使用图层的话,在tableView偶尔会感觉有卡顿的现象
//UIImage+DXDExtension.h 使用分类 使用绘画实现图片圆角 - (UIImage *)circleImage { // NO代表透明 UIGraphicsBeginImageContextWithOptions(self.size, NO, 0.0); // 获得上下文 CGContextRef ctx = UIGraphicsGetCurrentContext(); // 添加一个圆 CGRect rect = CGRectMake(0, 0, self.size.width, self.size.height); CGContextAddEllipseInRect(ctx, rect); // 裁剪 CGContextClip(ctx); // 将图片画上去 [self drawInRect:rect]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; }
//图片圆角进行封装 使用分类 UIImageView+DXDExtension.h - (void)setImgWithUrlStr:(NSString *)url { UIImage *placeholder = [[UIImage imageNamed:@"defaultUserIcon"] circleImage]; [self sd_setImageWithURL:[NSURL URLWithString:url] placeholderImage:placeholder completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) { self.image = image ? [image circleImage] : placeholder;//使用圆角 //self.image = image ? image : placeholder;//不使用圆角 }]; }
处理圆形图片(如头像)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。