Unicode in PDF - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T22:17:27Zhttp://stackoverflow.com/feeds/question/128162http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128162/unicode-in-pdf3Unicode in PDFMarcus Downinghttp://stackoverflow.com/users/10002008-09-24T16:19:35Z2008-11-05T14:34:17Z
<p>My program generates relatively simple PDF documents on request, but I'm having trouble with unicode characters, like kanji or odd math symbols. To write a normal string in PDF, you place it in brackets:</p>
<pre><code>(something)
</code></pre>
<p>There is also the option to escape a character with octal codes:</p>
<pre><code>(\527)
</code></pre>
<p>but this only goes up to 512 characters. How do you encode or escape higher characters? I've seen references to byte streams and hex-encoded strings, but none of the references I've read seem to be willing to tell me how to actually do it.</p>
<p><hr /></p>
<p><strong>Edit:</strong> Alternatively, point me to a good Java PDF library that will do the job for me. The one I'm currently using is a version of gnujpdf (which I've fixed several bugs in, since the original author appears to have gone AWOL), that allows you to program against an AWT Graphics interface, and ideally any replacement should do the same.</p>
<p>The alternatives seem to be either HTML -> PDF, or a programmatic model based on paragraphs and boxes that feels very much like HTML. iText is an example of the latter. This would mean rewriting my existing code, and I'm not convinced they'd give me the same flexibility in laying out.</p>
<p><hr /></p>
<p><strong>Edit 2:</strong> I didn't realise before, but the iText library has a Graphics2D API and seems to handle unicode perfectly, so that's what I'll be using. Though it isn't an answer to the question as asked, it solves the problem for me.</p>
<p><hr /></p>
<p><strong>Edit 3:</strong> iText is working nicely for me. I guess the lesson is, when faced with something that seems pointlessly difficult, look for somebody who knows more about it than you.</p>
http://stackoverflow.com/questions/128162/unicode-in-pdf/128261#1282611Answer by Ferruccio for Unicode in PDFFerrucciohttp://stackoverflow.com/users/40862008-09-24T16:39:44Z2008-09-24T16:39:44Z<p>Look in the PDF specs. They're freely <a href="http://www.adobe.com/devnet/pdf/pdf_reference.html" rel="nofollow">downloadable</a> from Adobe.</p>
http://stackoverflow.com/questions/128162/unicode-in-pdf/128351#1283510Answer by Filini for Unicode in PDFFilinihttp://stackoverflow.com/users/211622008-09-24T16:57:31Z2008-09-24T16:57:31Z<p>I'm not a PDF expert, and (as Ferruccio said) the PDF specs at Adobe should tell you everything, but a thought popped up in my mind: </p>
<p>Are you sure you are using a font that supports all the characters you need? </p>
<p>In our application, we create PDF from HTML pages (with a third party library), and we had this problem with cyrillic characters...</p>
http://stackoverflow.com/questions/128162/unicode-in-pdf/143702#1437022Answer by Derek Clegg for Unicode in PDFDerek Clegghttp://stackoverflow.com/users/197832008-09-27T14:28:03Z2008-09-27T14:28:03Z<p>The simple answer is that there's no simple answer. If you take a look at the PDF specification, you'll see an entire chapter — and a long one at that — devoted to the mechanisms of text display. I implemented all of the PDF support for my company, and handling text was by far the most complex part of exercise. The solution you discovered — use a 3rd party library to do the work for you — is really the best choice, unless you have very specific, special-purpose requirements for your PDF files.</p>
http://stackoverflow.com/questions/128162/unicode-in-pdf/163029#1630291Answer by user20441 for Unicode in PDFuser20441http://stackoverflow.com/users/204412008-10-02T15:31:06Z2008-10-02T15:31:06Z<p>See Appendix D (page 995) of the PDF specification. There is a limited number of fonts and character sets pre-defined in a PDF consumer application. To display other characters you need to embed a font that contains them. It is also preferable to embed only a subset of the font, including only required characters, in order to reduce file size. I am also working on displaying Unicode characters in PDF and it is a major hassle.</p>
<p>Check out PDFBox or iText.</p>
<p><a href="http://www.adobe.com/devnet/pdf/pdf_reference.html" rel="nofollow">http://www.adobe.com/devnet/pdf/pdf_reference.html</a></p>
http://stackoverflow.com/questions/128162/unicode-in-pdf/163065#1630652Answer by plinth for Unicode in PDFplinthhttp://stackoverflow.com/users/204812008-10-02T15:39:12Z2008-10-02T15:39:12Z<p>In the PDF reference in chapter 3, this is what they say about Unicode:</p>
<blockquote>
<p>Text strings are encoded in
either PDFDocEncoding or Unicode character encoding. PDFDocEncoding is a
superset of the ISO Latin 1 encoding and is documented in Appendix D. Unicode
is described in the Unicode Standard by the Unicode Consortium (see the Bibliography).
For text strings encoded in Unicode, the first two bytes must be 254 followed by
255. These two bytes represent the Unicode byte order marker, U+FEFF, indicating
that the string is encoded in the UTF-16BE (big-endian) encoding scheme specified
in the Unicode standard. (This mechanism precludes beginning a string using
PDFDocEncoding with the two characters thorn ydieresis, which is unlikely to
be a meaningful beginning of a word or phrase).</p>
</blockquote>