/**
* 图片裁剪
裁剪原理:
先在控制器上确定一个区域,然后再把要把需要裁剪的图片该区域上面,超出区域的图片都不显示
*
* @param rect
*/
-(void) drawRect:(CGRect)rect{
CGContextRef ref = UIGraphicsGetCurrentContext();
// 首先画圆
CGContextAddEllipseInRect(ref, CGRectMake(100, 100, 100, 100));
// 将当前上下文的形状裁剪出来,以后的内容只能放在这个形状里面
CGContextClip(ref);
// 填充圆
CGContextFillPath(ref);
// 显示图片
UIImage *image = [UIImage imageNamed:@"[email protected]"];
[image drawAtPoint:CGPointMake(50, 50)];
}
时间: 2024-10-25 06:05:59