How do I remove all transform
from text elements in an SVG while keeping the text elements and the font size in place?
This question is similar to Removing transforms in SVG files, but this question her specifically addresses text elements.
I already tried the usual trick to ungroup everything, cut everything, delete the current layer and past everything again in place. But the transforms are kept. I also tried and installed the Inkscape extension https://github.com/Klowner/inkscape-applytransforms. However it only works for paths not for text elements.
Note, I must not convert the text elements into paths, because I need the SVG as a template for FreeCAD and FreeCAD requires the <svg:text>
element in order to replace the text content.
I can also provide a sample file.
From the perspective of a graphic application it makes sense to prefer/keep transformations as long as possible when manipulating elements.
Otherwise the application would constantly need to recalculate multiple attributes like
etc
Keep in mind these recalculations would quickly lead to rounding errors – so editing your elements will soon lead to a loss of information.
Besides,
<text>
elements don't have a seperate attribute for rotation – yes, there is actuallyrotate
but it's actually just a shorthand for a transformation.JavaScript transformation converter
Provided your text is not rotated, you could recalculate transformations like
translate
,scale
to harcoded presentation attribute values.You might also try this experimental codepen helper I recently created to strip as many (nested) transform as possible.