从 uiimageview 中剪切部分图像
我有一个简单的问题。
我正在尝试在图片上画一个形状并能够剪切圆圈中的内容。有什么想法我会如何去做吗?
I have a quick question.
I am trying to draw a shape on a picture and be able to cut what is in the circle. Any ideas how I would go about doing that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要使用核心显卡。使用
CGImageMaskCreate
创建蒙版,然后使用CGImageCreateWithMask
将蒙版与图像组合。来源和示例:如何遮盖图像
You need to use core graphics for that. Create a mask with
CGImageMaskCreate
, and then useCGImageCreateWithMask
to combine mask with the image.Source and example: How to Mask an Image