擦除 UIImageView 的一个矩形
我想知道,如何删除 UIImageView
的自定义矩形(例如,IB
中的 UIView
或其他内容)为了显示位于下面的另一个 UIImageView
。
我无法使用论坛中的一些响应来做到这一点...
I want to know, how can I erase a custom rect (with, for example, an UIView
in IB
or something else) of an UIImageView
in order to display an other UIImageView
positioned underneath.
I didn't manage to do it using some response in the forum...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将清除图像中的矩形:
只需加载图像并清除矩形,然后再将其分配给图像视图:
This will clear a rect in an image:
Just load your image and clear the rects before assigning it to the image view:
可能不是最好的解决方案,但您可以采用另一种方式,分别将矩形周围的 4 个部分分开,然后在没有内部矩形的情况下将它们组合起来。只要有矩形要裁剪,您就可以重复此操作。
probably not the best solution but you can do the other way and take the 4 parts around the rect separately and combine them afterwards without the inner rect. You would repeat this as long as you have rect's to crop out.
您无法清除 UIImageView 本身,因为这只是绘制 UIImage。所以你已经删除了 UIImage 中的矩形。创建位图上下文,将图像绘制到其中。使用 CGContextClearRect 擦除您想要“看穿”的部分。从位图上下文创建新图像时。
You cannot clear the UIImageView itself because this just draws the UIImage. So you have erase the rect in the UIImage. Create a bitmap context, draw the image into it. Erase the part you want to "see through" with CGContextClearRect. When create a new new image from the bitmap context.