ImageTranscoder transcoder = getImageTranscoder();
TranscoderInput src = new TranscoderInput(svgURL.toExternalForm());
TranscoderOutput dst = new TranscoderOutput(tmpFileOS);
try{
transcoder.transcode(src, dst);
}catch(TranscoderException e){
StringWriter trace = new StringWriter();
e.printStackTrace(new PrintWriter(trace));
report.setErrorCode(ERROR_CANNOT_TRANSCODE_SVG);