ios 将图片变成圆形

时间:2020-12-05 05:43:55

#pragma mark - 将图片转换成圆形

-(UIImage*) circleImage:(UIImage*) image withParam:(CGFloat) inset {

UIGraphicsBeginImageContext(image.size);

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetLineWidth(context, 2);

CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);

CGRect rect = CGRectMake(inset, inset, image.size.width - inset * 2.0f, image.size.height - inset * 2.0f);

CGContextAddEllipseInRect(context, rect);

CGContextClip(context);

[image drawInRect:rect];

CGContextAddEllipseInRect(context, rect);

CGContextStrokePath(context);

UIImage *newimg = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return newimg;

}

上面代码注意 如果裁剪后没有使用 CGContextAddEllipseInRect(context, rect);
CGContextStrokePath(context); 这条代码 就会引起背景为白色时看不出来任务效果。
这里是椭圆操作