如何删除 UIImage 中的矩形区域?我的想法是我有一个纯色图像和一个 CGRect 矩形,我想删除 UIImage 中的 CGrect,以便 CGRect 区域是透明的。请参考下图。半红色是我的 uiimage,我想删除中间的矩形,以便我可以透明地查看背景图像。
问问题
1374 次
2 回答
0
CGContextClearRect(context, your_rect)
于 2012-04-30T09:59:14.827 回答
0
UIImage *yourImage;
CGRect imageRect = CGRectMake(0, 0, yourImage.size.width, yourImage.size.height);
CGRect grayRect = CGRectMake(20, 20, 20, 20);
CGRect rects[2] = {
imageRect,
grayRect
};
CGContextClipToRects(context, rects, 2);
[yourImage drawInRect:imageRect];
于 2012-04-30T10:12:57.377 回答