Here's the output. The first canvas is the tshirt and the second one is layered on top of the shirt. I need to save the design only and the one with the tshirt. Can i bind the two canvas? I am using Blob to save the design.
Asked
Active
Viewed 63 times
3
-
1Possible duplicate of [Combining two or more Canvas elements with some sort of blending](https://stackoverflow.com/questions/6787899/combining-two-or-more-canvas-elements-with-some-sort-of-blending) – Patrick Jan 13 '18 at 14:08
-
Just draw the top canvas on to the other one `ctx.drawImage(topCanvas,0,0);` then save the composite result. – Blindman67 Jan 13 '18 at 18:32
-
@Blindman67 will this work only with onload? Because the canvas i am dealing with is dynamic. Sorry i am new to this. – TryHard Jan 15 '18 at 16:34