4
votes
1answer
194 views

Apply canvas composite to only two operations

I need to draw a pizza with opacity so that it looks "empty", and progressively fill the pizza with the full colored image in a clockwise manner using canvas. I started out by drawing the "empty" ...
4
votes
2answers
1k views

Canvas - Fill a rectangle in all areas that are fully transparent

I'm writing a simple 2D game engine using the HTML5 canvas. I've come to adding a lighting engine. Each light source has a radius value and an intensity value (0-1, eg 1 would be very bright). There's ...
0
votes
1answer
87 views

Canvas and globalCompositeOperations

Hey, I have the following code, that gives you the effect of a "mask". JSFiddle: http://jsfiddle.net/neuroflux/m5Fj2/7/ Basically, I would like a semi-opaque gradient instead of a circle... I tried ...
6
votes
1answer
3k views

HTML5 Canvas compositing (source-in)

I am trying to recreate a page flipping type animation in HTML5 using canvas. The animation is based on ideas from this page. But that's not really important. The problem I am having is that using the ...
147
votes
11answers
124k views

How to clear the canvas for redrawing

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 ...