I've built a frontend tool for zooming in/out of an SVG canvas, but when I zoom, any 1px strokes increase in width (visually). Is there a svg setting that will ensure that 1px strokes remain 1px (visually) when zoomed? I remember reading about it somewhere, but can't find the resource.

link|improve this question

75% accept rate
i think the whole point is that it is Scalable vector graphics... so zooming is just like using a magnifying glass - ll things will get bigger proportionally. – Randy Oct 7 '11 at 12:04
You can add vector-effect="non-scaling-stroke" attribute to the path? – Cipi Oct 7 '11 at 12:37
feedback

1 Answer

up vote 2 down vote accepted

Try to add vector-effect="non-scaling-stroke" attribute to the path. Check HERE for details. Im guessing that's what you want?

link|improve this answer
That's the one. Thanks. – Steve Oct 7 '11 at 13:29
You are welcome! Feel free to upvote! :D :D :D :P – Cipi Oct 7 '11 at 13:36
feedback

Your Answer

 
or
required, but never shown

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