Thanks Thierry & Thomas, you've been a great help. One last question: The Batik JavaDocs don't seem to have a class that implements the DocumentType interface. Am I missing something? What is the recommended way to set the DocumentType as you have said below.
Thanks, Tony -----Original Message----- From: Thierry Kormann [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 4:07 AM To: Batik Users; Anthony Shawver Subject: Re: 1.1.1 transcoding Your test.svg file does not have the proper DOCTYPE to say that this is an SVG document. So you should add the following lines in test.svg <?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="???" height="???"> ... </svg> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
