protected TranscoderInput createTranscoderInput() {
try {
String parser = XMLResourceDescriptor.getXMLParserClassName();
SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);
Document doc = f.createDocument(resolveURL(inputURI).toString());
return new TranscoderInput(doc);
} catch (IOException ex) {
throw new IllegalArgumentException(inputURI);
}
}