After experimenting with composite operations and drawing images on the canvas I\'m now trying to remove images and compositing. How do I do this?
I need to clear th
If you are drawing lines, make sure you don't forget:
context.beginPath();
Otherwise the lines won't get cleared.