我正在尝试清除 cgcontext 上当前绘制的图像
上绘制了 uiimage
我在 cgcontext CGContextDrawImage(tempContext, CGRectMake(0,0,myRect.size.width,myRect.size.height), imgRef);
但是一旦用户完成当前图像,我想清除 tempContext,以便我可以重新缩放/操作图像并在相同的上下文中重新绘制它。
为此,我想清除上下文并使其干净。 我尝试了 CgContextClearRect 但没有成功:(
I have drawn a uiimage on a cgcontext
CGContextDrawImage(tempContext, CGRectMake(0,0,myRect.size.width,myRect.size.height), imgRef);
but once user is done with the current image, i want to clear the tempContext so that I can rescale / manipulate the image and redraw it on the same context.
for this i want to clear the the context and make it clean.
I tried CgContextClearRect but it didn't worked :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,它对我有用: CGContextClearRect(UIGraphicsGetCurrentContext(), rect);
try this one, it works for me: CGContextClearRect(UIGraphicsGetCurrentContext(), rect);