我正在尝试清除 cgcontext 上当前绘制的图像

发布于 2024-08-19 10:49:09 字数 260 浏览 6 评论 0原文

上绘制了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┊风居住的梦幻卍 2024-08-26 10:49:09

试试这个,它对我有用: CGContextClearRect(UIGraphicsGetCurrentContext(), rect);

try this one, it works for me: CGContextClearRect(UIGraphicsGetCurrentContext(), rect);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文