Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Erasing" in html5 canvas

Tags:

html

canvas

I have a doodling application in html5 canvas, and I'm trying to figure out the best way to implement an eraser control. First impulse was just to have the eraser draw the background color [white], but this is problematic because if the user moves an image or another layer to where they've previously erased, they see the white drawing where they erased.

Ideally, I'd like to have the erase control change the pixels to black transparent. I can't simply use lineTo to do this because, obviously, it just draws a black transparent line over it, and that leaves the original doodle untouched. Any ideas on how to do this?

Thanks.

like image 709
Matthew Avatar asked Jul 25 '10 10:07

Matthew


People also ask

Is there an eraser tool in canvas?

To erase a complete background in Canva, use the Canva Background Remover tool under “Effects.” To erase or restore certain parts of the background, use the “Erase” or “Restore” function (only applicable after using the Background Remover tool first).

How do I delete part of a picture on canvas?

Listen for drag events on your circle-eraser. Use those events to draw a circle on the canvas that move just like the Kinetic circle-eraser moves. Since the canvas's compositing is set to "erase", new drawings of the circle on the canvas will erase the image on the canvas.

How do you remove lines in canvas?

Output. If we run the above code, it will display a window with a button and a shape in the canvas. Now, click the "Delete Shape" button to delete the displayed line from the canvas.


2 Answers

If you want to draw a black transparent stroke, you probably want:

context.globalCompositeOperation = "destination-out"; context.strokeStyle = "rgba(0,0,0,1)"; 

Remember to save the previous globalCompositeOperation and then restore it later or transparency won't work properly!

like image 94
andrewmu Avatar answered Oct 05 '22 23:10

andrewmu


Note that firefox 3.6/4.0 implement 'copy' by erasing the entire background first. The w3c docs aren't clear as to what should happen here. Chrome (webkit?) interprets the specs as 'only where pixels are actually drawn', for example the result of a stroke().

destination-out with "rgba(255,255,255,1.0)", sets background to transparent where pixels in the framebuffer are not transparent. leaving transparent background in both chrome and firefox.

copy the following page locally, and play with various colors/opacities for the blue box and red circle, and don't forget to make the background color of the page non-white! and

https://developer.mozilla.org/samples/canvas-tutorial/6_1_canvas_composite.html

You'll find browsers are wildly different.

like image 20
Tim Avatar answered Oct 05 '22 23:10

Tim