使用html5将context.getImageData保存到sessionStorage?
我尝试这样做,但没有成功。是否有可能保存该对象或其值然后使用它,例如用于重绘?
I try this, but I don't succeed. Is there a posibility to save that object or their values and then use it , e.g. for a redraw?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用
Canvas.toDataURL
获取画布的 base64 编码的 PNG,并保存该字符串。稍后,您可以将此数据 URL 绘制到画布< /a>.
Instead of saving the image data array (which is uncompressed), I would suggest using
Canvas.toDataURL
to get a base64-encoded PNG for the canvas, and saving that string.Later, you can draw this data URL to your canvas.