Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

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

3 Answers

up vote 13 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).

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

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.

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

It can be done in Mozilla Firefox. Add this to your code:

contextXYZ.mozImageSmoothingEnabled = false;

In Opera it's currently a feature request, but hopefully it will be added soon.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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