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=40106>. 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=40106 Summary: PDF crash in PDFText class Product: Fop Version: 0.92 Platform: All OS/Version: other Status: NEW Severity: normal Priority: P2 Component: pdf AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] When rendering any .fo file with text in it AND using a font specified in the userconfig file, the PDFText class throws an exception. This happens not on a PC with jre 1.5 but does on Linux, running java version "1.4.2" gij (GNU libgcj) version 4.0.1 20050727 (Red Hat 4.0.1-5) I finally nailed it on line uniBytes = new String(a).getBytes("UnicodeBigUnmarked"); It seems that particular JVM implementation does not support that character encoding. When I changed it to uniBytes = new String(a).getBytes("UTF-16BE"); UTF-16BE being the new notation worked on PC **and** the linux box -- 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.
