HTML 5 Canvas 和 Javascript:组合分层画布
我想将不同画布上的图像(使用 z-index 分层)组合起来导出为一张图像。
这可能吗?
I wanted to combine images from different canvases (layered on top of each other using z-index) to export as one single image.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
相同:
当 div 包含一个或多个 HTML5 canvas 元素时,如何在客户端将 div 保存为图像?
将多个画布元素保存为图像
Same :
How can I save div as image at client side where div contains one or more than one HTML5 canvas elements?
Save many canvas element as image
尝试使用 context.getImageData() 和 context.putImageData()。我以前没有在 Javascript 中尝试过,但这应该不那么困难。
HTML 画布 2D 上下文
Try using the context.getImageData() and context.putImageData(). I haven't tried that in Javascript before, but it shouldn't be that difficult.
HTML Canvas 2D Context