Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Web Technology by (20.3k points)

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 the canvas for redrawing other images; this can go on for a while so I don't think drawing a new rectangle every time will be the most efficient option.

1 Answer

0 votes
by (40.7k points)

Use the code given below:

const context = canvas.getContext('2d');

context.clearRect(0, 0, canvas.width, canvas.height);

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...