CGContextRef 撤消绘制的画?
如何撤消CGContextRef(Iphone)中绘制的绘画?
How to Undo drawn paintings in CGContextRef(Iphone)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何撤消CGContextRef(Iphone)中绘制的绘画?
How to Undo drawn paintings in CGContextRef(Iphone)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
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
你不能。你需要把整个东西重新画一遍。
You can't. You need to draw the whole thing again.