DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=41079>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=41079 ------- Additional Comments From [EMAIL PROTECTED] 2006-12-03 18:17 ------- To answer the second half of the last comment, here's the code I'm using (it's slightly different because I had to remove some of our framework classes for reading files...) There are no hints and whatever encoding comes out must be the default (CP1252 happens to be the default encoding on Windows, which may be related.) public void testWmfSvg() throws Exception { InputStream in = new FileInputStream("test.wmf"); OutputStream out = new FileOutputStream(new File(scratch, "out.svg")); TranscoderInput input = new TranscoderInput(in); TranscoderOutput output = new TranscoderOutput(out); new WMFTranscoder().transcode(input, output); in.close(); out.close(); } -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]