I'm working on a doodling app in HTML5 and I would like to do a sort of bucket feature. The idea is to draw a path and it will be closed and filled with the selected colour (colour of the stroke). It works quite well with solid colours, but if I want to have a transparent stroke and fill, I run into this problem: http://imgur.com/0N3MW

What happens is the fill is done until the middle of the stroke (the actual sampling point of the path) so there's a line of half the size of the stroke inside the shape which is darker because it's the intersection of the fill and the stroke.

Do you see any workaround for this?

Unfortunately, I can't post to JSFiddle right now because it's on READ ONLY mode. But you should be able to see what I'm talking about live in this sandbox: http://bit.ly/AbaMLl (The website and library is unrelated to what I'm using, it's just a canvas sanbox I found)

Any ideas/leads welcome :)

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Sure, use ctx.globalCompositeOperation = 'destination-atop'; and it ought to look the way you're expecting.

Like so: http://jsfiddle.net/UcyX4/

(Take out that line in order to see the problem you're having)

Assuming its not the only thing drawn on canvas, you're probably going to have to draw this to a temporary canvas and then draw that canvas onto your normal one, otherwise it may ruin all the previously drawn shapes. So you'd need a system like so: http://jsfiddle.net/dATfj/

edit: code pasted in case of jsfiddle failure:

html:

<canvas id="canvas1" width="500" height="500"></canvas>

script:

var can = document.getElementById('canvas1');
var ctx = can.getContext('2d');

var can2 = document.createElement('canvas');
can2.width = can.width;
can2.height = can.height;
ctx2 = can2.getContext('2d');

ctx.strokeStyle = 'rgba(0,0,0,0.7)';
ctx.fillStyle = 'rgba(0,0,0,0.7)';
ctx.lineWidth = 10;


// Stuff drawn normally before
// Here I draw one rect in the old way just to show the old way
// and show something on the canvas before:
ctx.beginPath();
ctx.rect(50,50,100,100);
ctx.fill();
ctx.stroke();


// Draw on can2 then draw can2 to can
ctx2.strokeStyle = 'rgba(0,0,0,0.7)';
ctx2.fillStyle = 'rgba(0,0,0,0.7)';
ctx2.lineWidth = 10;
ctx2.beginPath();
ctx2.rect(50,250,100,100);
ctx2.globalCompositeOperation = 'destination-atop';
ctx2.fill();
ctx2.stroke();

ctx.drawImage(can2, 0, 0);
link|improve this answer
Unfortunately, JSFiddle gives me a 404 but I've tried changing the Composite mode and it seems to work. But you are also right, I need to draw my "intermediate" canvas I'm using to draw shapes onto the final one with the final shapes. I will try to find how to do this whilst JSFiddle is recovering :) Thanks again! – Mathieu Feb 10 at 17:24
Ah I added all the code from the fiddle just in case. Best of luck with your project! – Simon Sarris Feb 10 at 17:33
I helped myself from this one in the meantime: stackoverflow.com/questions/4405336/… . It might be good to mention to JQuery users that to get the type needed for can2 in your example, you have to do $("#myCanvas").get(0).getContext('2d').canvas . It works like a charm now. Thank you very much one more time! – Mathieu Feb 10 at 18:00
feedback

I could mention a study I've made on canvas context and drawing paths here advanced path painting in canvas

It might help you find and solve your problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.