1
I’m making a site where you have a picture to color a drawing.
After much research I managed to make a scheme to paint a certain area of the drawing of canvas
.
Now I want to do a function that prints the drawing I made.
I’m trying to do it like this:
<div id="painter">
<canvas style="z-index: 1;"></canvas>
<canvas style="z-index: 2;"></canvas>
<canvas style="z-index: 3;"></canvas>
<canvas style="z-index: 4;"></canvas>
</div>
My painting has all these canvas
.
When I make a scratch on the board it creates another canvas
and so on.
I want to print the drawing, but this way is not going. When you open the screen to print appears 5 empty sheets.
The canvas
doesn’t come out in print ?
I did it. It wasn’t that hard. I did a little research on Soen.
– Diego Souza
good that solved! Post as answer to your solution to help other people who may have the same problem ;)
– Brunno
I’ll post it. I was hoping to take a break.
– Diego Souza