Hi, The svg specification shows a simple SVG content embedded inline as a fragment within a parent XML document: <?xml version="1.0" standalone="yes"?> <parent xmlns="http://example.org" xmlns:svg="http://www.w3.org/2000/svg"> <!-- parent contents here --> <svg:svg width="4cm" height="8cm" version="1.1"> <svg:ellipse cx="2cm" cy="4cm" rx="2cm" ry="1cm" /> </svg:svg> <!-- ... --> </parent>
Is it possible to rendering such svg content with Batik? I want to use some custom XML tags to add some extra information to the document. For example, I may specify for certain group of graphic shapes, there are certain callbacks. Those callbacks will be specified as either elements or attributes. Thanks a lot in advance. wz --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]