I would like to know if there is a way to get a better rendering of svg rotated text?
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" width="900" height="400" xmlns="http://www.w3.org/2000/svg">
<text x="50" y="50" id="text_0" transform="rotate(17, 50, 50)">
SVG text test
</text>
</svg>
You can test the render of this code here: http://jsfiddle.net/vbzTd/2/ It seems like characters are not following the baseline and I don't understand why.
Thanks a lot for your help.