I made some custom SVG symbols for a project I’m working on and I’ve had
success using parameters to control fill, stroke, and stroke-width.
However, I have text in the symbols that I would like to rotate to face
straight up no matter what angle the whole symbol is facing.

So far the text object I’ve been working with has a matrix transformation
applied to it.transformation=“matrix(a,b,c,d,e,f)”

I tried applying a second transformation just for the rotation with no luck.

transformation=“matrix(a,b,c,d,e,f)”
transformation=“rotate(param(textangle))”

I then tried adding a rotation to the existing transformation

transformation=“matrix(a,b,c,d,e,f) rotate(param(textangle))”

After this I tried just using the rotate tag, which is supposed to rotate
each character in the text independently

transformation=“matrix(a,b,c,d,e,f)” rotate=“param(textangle)”

I haven’t had a ton of time to play with it beyond that but I’m wondering
is this just a limitation in the way that QGIS renders the SVG?
_______________________________________________
QGIS-User mailing list
QGIS-User@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Reply via email to