try {
ostream = new FileOutputStream(destinationFile);
Writer out = new OutputStreamWriter(ostream, "UTF-8");
TranscoderOutput transcoderOutput = new TranscoderOutput(out);
SVGRenderingTranscoder t = new SVGRenderingTranscoder();
t.transcode(transcoderInput, transcoderOutput);
out.flush();
out.close();
log("Processed file " + absoluteFile.getName(), Project.MSG_INFO);
} catch (FileNotFoundException e) {