I'm playing around with the <canvas> element, drawing lines and such.

I've noticed that my diagonal lines are antialiased. I'd prefer the jaggy look for what I'm doing - is there any way of turning this feature off?

link|improve this question

I think that is rather browser-related. Maybe some additional info on what software you use would be helpful. – Tomalak Oct 12 '08 at 9:37
I'd prefer a cross-browser method, but a method that works on any single browser would still be interesting to me – Blorgbeard Oct 14 '08 at 19:31
I just wanted to see if there as been any change yet on this topic? – vternal3 Sep 14 '11 at 11:19
feedback

4 Answers

up vote 9 down vote accepted

Currently you can't.

Related problem was discussed on the WHAWG mailing list, and whether this should be possible is still an open issue and might be added in the future.

You can write your own line-drawing function with help of getImageData and putImageData (and use lineTo as a fallback, because pixel data isn't exposed by all implementations).

link|improve this answer
I wonder about the performance of a javascript line algorithm.. Might give Bresenham's a go at some point. – Blorgbeard Oct 14 '08 at 19:32
Browser vendors are touting new super-fast JS engines lately, so finally there would be a good use for it. – porneL Oct 14 '08 at 22:33
feedback

Draw your 1-pixel lines on coordinates like ctx.lineTo(10.5, 10.5). Drawing a one-pixel line over the point (10, 10) means, that this 1 pixel at that position reaches from 9.5 to 10.5 which results in two lines that get drawn on the canvas.

A nice trick to not always need to add the 0.5 to the actual coordinate you want to draw over if you've got a lot of one-pixel lines, is to ctx.translate(0.5, 0.5) your whole canvas at the beginning.

link|improve this answer
hmm, I'm having a trouble getting rid of anti-aliasing using this technique. Maybe, I'm miss understanding something? Would you mind posting an example some where? – Xavi Nov 23 '10 at 22:31
1  
This doesn't get rid of antialiasing, but does make antialiased lines look a lot better --- such as getting rid of those embarrassing horizontal or vertical lines that are two pixels thick when you actually wanted one pixel. – David Given Mar 6 '11 at 23:30
1  
Good tip!!!!!!! – Gabriel A. Zorrilla Mar 10 '11 at 3:54
feedback

It can be done in Mozilla Firefox.

Add to your code:

contextXYZ.mozImageSmoothingEnabled=false;

In Opera is a feature request, hopefuly to be added soon.

cheers,

link|improve this answer
cool. +1 for your contribution. i wonder if the disabling of AA speeds up linedrawing – marcusklaas Dec 24 '11 at 15:32
feedback

In Google Chrome and Safari the following renders aliased lines:

context.moveTo(x1, y1); 
context.lineTo(x2, y2);
context.stroke();

(But do not call context.beginPath()).

link|improve this answer
This doesn't work for me in Chrome 18.0.1003.1 dev on Mac. – nornagon Jan 14 at 1:25
feedback

Your Answer

 
or
required, but never shown

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