SVG is a huge XML-based standard. I have parsed SVG as XML in the past. However, some things are complicated.
For example, I would like to know the size of the group. As far as I can tell, this is possible only by recursively moving through all the children in the group (noting all their transformations) and accumulating their sizes.
I would like to have a library that could do such things for me. Does something like this exist?
source share