Hello,
I have some SVG files which have many text nodes in them.
I would like to get the absolute position of each of the text nodes, within the SVG document (the SVG documents have width="743.75" and height="1052.5").
An example text node looks like this:
<g>
<text transform="matrix(1,0,0,-1,106.5,732.5)">
<tspan x="0 7.8979998 14.003 17.698999" y="0">Date</tspan>
</text>
</g>
How can I calculate all of the matrix() transforms to arrive at the positive absolute X and Y values for each text box? Is there a simple recursive function I could use and pass in each matrix in turn?
Thanks!
