Can anyone recommend a decent FOSS PDF generator for Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T16:28:01Z http://stackoverflow.com/feeds/question/279129 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python 4 Can anyone recommend a decent FOSS PDF generator for Python? Electrons_Ahoy 2008-11-10T20:53:34Z 2009-05-20T23:37:38Z <p>I need a basic pdf generator that'll let me toss some images and text into a pdf file. The ability to have some basic drawing commands (lines and so forth) would also be a plus.</p> <p>I did read through <a href="http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python">this question</a>, but I really don't need a report generator and most of the responses there seemed like real overkill for what I'm trying to do. (I don't need templates or LaTeX-grade layout control.)</p> http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python/279147#279147 1 Answer by Martin v. Löwis for Can anyone recommend a decent FOSS PDF generator for Python? Martin v. Löwis 2008-11-10T20:59:04Z 2008-11-10T20:59:04Z <p>I think going through Latex is the easiest way, and not overkill at all. Generating a working PDF file is quite a difficult activity, whereas generating a Tex source is much easier. Any other typesetting change would probably work as well, such as going through reStructuredText or troff.</p> http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python/279165#279165 4 Answer by bouvard for Can anyone recommend a decent FOSS PDF generator for Python? bouvard 2008-11-10T21:04:17Z 2009-05-20T23:37:38Z <p>For one of my projects, I have tested and/or implemented probably six or seven different methods of going from an image to a PDF in the last six months. Ultimately I ended up coming back to <a href="http://www.reportlab.org/downloads.html" rel="nofollow">ReportLab</a> (which I had initially avoided for reasons similar to those you described) because all of the others had glaring limitations or outright omissions (such as the inability to set document metadata).</p> <p>ReportLab isn't as difficult to handle as it appears at first glance and it may save you a lot of headache-laden refactoring later on. I would strongly suggest you go ahead and use it and therefore know that if you ever want to be able to do more you will have the ability too rather than do what I did and bounce back and forth between a number of different utilities, libraries, and formats.</p> <p><strong>EDIT:</strong></p> <p>It is also worth mentioning that you can bypass the Platypus layout system that comes with ReportLab if all you want to do is put bit a of text and imagery on a page.</p> http://stackoverflow.com/questions/279129/can-anyone-recommend-a-decent-foss-pdf-generator-for-python/279167#279167 0 Answer by Stephan Eggermont for Can anyone recommend a decent FOSS PDF generator for Python? Stephan Eggermont 2008-11-10T21:04:48Z 2008-11-10T21:04:48Z <p>Is the reportlab code not ok? The reason why using LaTeX might not be overkill is because pdf is a really low-level format. In pdf you do not get line-breaks automatically, you have to calculate line-widths yourself.</p>