* Creates a <tt>Document</tt> using the specified isource and
* call the <tt>transcodeToStream(Document, OutputStream).
*/
public void transcodeToStream(InputSource isource, OutputStream ostream)
throws TranscoderException {
SVGDocumentFactory f = new SVGDocumentFactory(getParserClassName());
try {
transcodeToStream(f.createDocument(isource.getSystemId(),
isource), ostream);
} catch (DOMException ex) {
throw new TranscoderException(ex.getMessage(), ex);
} catch (SAXException ex) {
throw new TranscoderException(ex.getMessage(), ex);