Reputation: 1555
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?
Upvotes: 2
Views: 5859
Reputation: 5154
Try using the context.getImageData() and context.putImageData(). I haven't tried that in Javascript before, but it shouldn't be that difficult.
Upvotes: 0