使用 CGImageRef 简单裁剪图片
需求:
长方形头像,只显示上半部分,且最终显示形状为圆形
效果如下:
黑线中的内容即裁剪后的效果
解决思路:
把长方形图片,裁剪为正方形,并对UIImageView做圆角处理
实现代码:
// 原始图片
UIImage *image = [UIImage imageNamed:@"image.jpeg"];
// 图片处理对象
CGImageRef imageRef =image.CGImage;
// 裁剪区域
CGRect cutArea = CGRectMake(0,
0,
image.size.width,
image.size.width);
// 裁剪后的图片
CGImageRef cgImage = CGImageCreateWithImageInRect(imageRef,
cutArea);
UIImage *cutImage = [[UIImage alloc] initWithCGImage:cgImage];