Can anyone recomend a Python PDF generator with OpenType (.OTF) support? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T17:08:50Z http://stackoverflow.com/feeds/question/895596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/895596/can-anyone-recomend-a-python-pdf-generator-with-opentype-otf-support 2 Can anyone recomend a Python PDF generator with OpenType (.OTF) support? Electrons_Ahoy 2009-05-21T22:32:35Z 2009-07-24T03:41:48Z <p>After asking <a href="http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python">this question</a> back in November, I've been very happy with ReportLab for all of my python pdf-generation needs.</p> <p>However, it turns out that while ReportLab will use regular TrueType (TTF) fonts, it does not support OpenType (OTF) fonts.</p> <p>One of the current widgets I'm working on is going to need to use some OpenType fonts, and so sadly, ReportLab just removed itself from the running.</p> <p>Can anyone recommend an OpenType-compatible PDF generator for Python?</p> <p>It doesn't need to be fancy - I just need to be able to drop UTF-8 text onto a page.</p> <p><hr /></p> <p>Update: OpenType fonts, roughtly, come in two flavors: TrueType-style and PostScript-style, based on how they store glyph outlines. ReportLab just supports the TypeType-style. On Windows, it turns out, you can tell the difference by the extension: TrueType and OpenType of the TrueType-style are .TTF, OpenType with the PostScript style are .OTF.</p> <p>So, my real question is, can anyone recommend a Python PDF generator that supports .otf fonts?</p> http://stackoverflow.com/questions/895596/can-anyone-recomend-a-python-pdf-generator-with-opentype-otf-support/895666#895666 3 Answer by Jarret Hardie for Can anyone recomend a Python PDF generator with OpenType (.OTF) support? Jarret Hardie 2009-05-21T22:51:45Z 2009-05-21T23:33:28Z <p>That sort of depends... OpenType was intended to extend TrueType (and <a href="http://en.wikipedia.org/wiki/OpenType" rel="nofollow">uses the general structure of TrueType internally</a>) - so much so that some folks have <a href="http://two.pairlist.net/pipermail/reportlab-users/2008-August/007120.html" rel="nofollow">reported success using OpenType fonts</a> in reportlab; I suppose it all depends on whether or not there are any special OTF characteristics that your use of the font requires.</p> <p>In fact, some <a href="http://www.reportlab.org/apis/reportlab/reportlab.pdfbase.ttfonts-pysrc.html" rel="nofollow">comments in the TTFontFile class source for reportlab</a> mention OpenType by name, so it's probably worth a shot.</p> <p><hr /></p> <p>EDIT: The comments reference an error message that pretty much summarizes the case where reportlab can't support an OTF font. OTF fonts can store outline data in several formats (see the wikipedia link above). In this case, the font appears to be using the CFF format, for which reportlab specifically checks in its font parser, and which reportlab specifically rejects with the error message "postscript outlines are not supported".</p> <p>That pretty much ends my font and PDF-generator expertise. Sorry! Looking forward to seeing any suggestions of alternatives.</p> <p><hr /></p> <p>EDIT 2: Ok, looking at the docs for Django, I see they reference another full PDF api: <a href="http://www.pdflib.com/" rel="nofollow">pdflib</a>. I have no direct experience with PDFlib, and it's not free (neither price nor license). I also find their docs annoying as I couldn't just see the English API without downloading the whole bloomin package (don't know if there's a free trial or what). I did look at the German docs, though, which ARE mysteriously available for free, separate downlod. My second-language-in-university german did allow me to discern that they claim support for unicode and 8-bit OpenType fonts with postscript outlines.</p> <p>Do I sound enthused about them? Nope :-) Hopefully someone who uses and loves them will correct me, as I repeat I have no first-hand experience with them. It may be an option if your budget allows and all else fails. </p> http://stackoverflow.com/questions/895596/can-anyone-recomend-a-python-pdf-generator-with-opentype-otf-support/895779#895779 1 Answer by joeforker for Can anyone recomend a Python PDF generator with OpenType (.OTF) support? joeforker 2009-05-21T23:27:48Z 2009-07-24T03:41:48Z <p>It would be nice if reportlab had native OTF support but all most people really need is a TrueType version of a particular OpenType font. I used this fontforge script to convert the font I needed to TrueType with perfect results.</p> <p>From <a href="http://www.se.eecs.uni-kassel.de/~thm/OpenOffice.org/bugs.html" rel="nofollow">http://www.se.eecs.uni-kassel.de/~thm/OpenOffice.org/bugs.html</a> :</p> <pre><code>#!/usr/bin/fontforge # Quick and dirty hack: converts a font to truetype (.ttf) Print("Opening "+$1); Open($1); Print("Saving "+$1:r+".ttf"); Generate($1:r+".ttf"); Quit(0); </code></pre>