I need to solve the following problem:
Given an .svg file and a node id (assumed to be an id of a path node), extract the path definition from that node in a form that can be used for further processing (e.g. AWT Shape or Path2D). The resulting path definition must be in absolute coordinates, i.e. relative to the page.
I am trying to use Batik to accomplish this. Finding the node in the SVG DOM tree and extracting/parsing the path definition does not seem to be a problem, but I also need to transform the path to the root node space (rather than whatever node the path has ended up being a child of).
I am wondering if there is a straightforward way of determining the effective transform for a given node using Batik?
One way seems to be traversing the DOM upwards from the target node and parsing/concatenating all transforms.
Another one that I have attempted is to build a GVT tree from the SVG DOM, but this way the node ids seem to be discarded.