CGContextRef 撤消绘制的画?

发布于 2024-11-05 06:34:30 字数 38 浏览 3 评论 0原文

如何撤消CGContextRef(Iphone)中绘制的绘画?

How to Undo drawn paintings in CGContextRef(Iphone)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

爱的故事 2024-11-12 06:34:30

CGContext 本质上并不是“不可撤销的”。您无法取消填充矩形或恢复已绘制的部分。数据根本不存在。根据我的经验,最好的选择是创建一个“保存”方法,该方法查看正在更改的区域,并在执行绘图操作之前将该区域中的图像数据保存到撤消堆栈中。然后,当您决定撤消时,您可以获取修改的区域并从保存的数据中恢复它。

摘自如何将 NSUndoManager 与 UIImageView 或 CGContext 一起使用

CGContexts aren't inherently "undoable." You can't unfill a rectangle or restore a portion you've drawn over. The data just isn't there. In my experience, the best bet is to create a "save" method that looks at the region being altered and saves the image data in that region to the undo stack before drawing operations are performed. Then, when you decide to undo, you can take the modified region and restore it from your saved data.

Taken from How to use NSUndoManager with a UIImageView or CGContext

与他有关 2024-11-12 06:34:30

你不能。你需要把整个东西重新画一遍。

You can't. You need to draw the whole thing again.

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