I want to know if there is a way to access the SVG DOM of a SVG image
included inside another SVG loaded into a JSVGCanvas.
Example of Svg loaded into canvas:
...
<svg ....>
<g id=images>
< image ..... url=otherImage.svg>
</g>
</svg>
I want to get the SVGDocument of otherImage.svg, from within the SVGDocument
from the outermost SVG (loaded in the JSVGCanvas).
I have succesfully walked the GVT of outerImage.svg from within the
outermost SVG, through the gvt.CanvasGraphicsNode. And want to do the same
for the SVG Dom.
Basically, what i want to do is to assemble a SVG file that does not have
any external references, from a original source that does have these
external references (all image elements are also SVG images)
Or is this something i should do outside of batik, merging my svg documents
as xml docs, and then setting the JSVGCanvas to the final doc? (i would not
like this approach, since my app already generates the svg document with
the external references and shows it in a canvas)
Thanks, Andres
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]