Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
r u still looking for a solution ? – Mihir Mar 16 at 17:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.