Which is the best PDF library for PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:42:23Z http://stackoverflow.com/feeds/question/560583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php 6 Which is the best PDF library for PHP? Darryl Hein 2009-02-18T10:53:07Z 2009-09-18T20:31:10Z <p>I'm wondering which is the best PDF creation library for PHP, mainly for creating PDFs from scratch (not as much HTML to PDF)?</p> <p>I have worked with <a href="http://fpdf.org" rel="nofollow">FPDF</a> for quite a while now, but it's getting quite old and hasn't had much for updates. I found <a href="http://tcpdf.org" rel="nofollow">TCPDF</a> the other day (thanks you another question on SO). It seems very good and is based on FPDF so I don't think it'd be a big transition. <a href="http://www.setasign.de/products/pdf-php-solutions/fpdi/" rel="nofollow">FPDI</a> also supports TCPDF which is nice as I have used it before and found it be useful.</p> <p>I have also seen <a href="http://www.digitaljunkies.ca/dompdf/" rel="nofollow">DOMPDF</a> but it too hasn't had many updates for quite some time and is lacking a lot of functionality for general PDF generation. Zend (<a href="http://framework.zend.com/manual/en/zend.pdf.html" rel="nofollow">Zend_Pdf</a>) as well as many other libraries have their own PDF libraries or extend another one, but you often have to setup the entire library, which for existing projects can be a problem.</p> <p>What other libraries are there and what have your experiences with them been with the above or other libraries?</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/560589#560589 1 Answer by Fawaz.Net for Which is the best PDF library for PHP? Fawaz.Net 2009-02-18T10:55:19Z 2009-02-18T10:55:19Z <p>Try this one</p> <p><a href="http://www.fpdf.org/" rel="nofollow">http://www.fpdf.org/</a></p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/560612#560612 0 Answer by Pablo Santa Cruz for Which is the best PDF library for PHP? Pablo Santa Cruz 2009-02-18T11:05:52Z 2009-02-18T11:05:52Z <p>I like <a href="http://www.php.net/pdf" rel="nofollow">pdflib</a></p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/560616#560616 2 Answer by cletus for Which is the best PDF library for PHP? cletus 2009-02-18T11:06:26Z 2009-02-18T11:06:26Z <p>There is more info on this topic in <a href="http://stackoverflow.com/questions/391005/convert-html-css-to-pdf-with-php">Convert HTML + CSS to PDF with PHP?</a></p> <p>I don't know from your question if you want to build PDFs from scratch. If so, that's not an area I've really looked into.</p> <p>If however you want to convert HTML to PDF then that I can help you with because I've been doing lots of this for the last three months and I can unequivocally that the best product by far (by light years in fact) is <a href="http://princexml.com/" rel="nofollow">Prince XML</a>. It's quick, robust and, yes, it's expensive (USD 3800 for a server license).</p> <p>I tried DOMPDF, HTMLDOC, html2pdf, etc and each had problems (more info in the above question). Prince just continues to blow me away. it's fast and has many many features that go beyond CSS 2.1 even.</p> <p>It also passed the <a href="http://www.webstandards.org/action/acid2/" rel="nofollow">Acid2</a> test, which not even some browsers can claim.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/560618#560618 5 Answer by Neil Aitken for Which is the best PDF library for PHP? Neil Aitken 2009-02-18T11:06:50Z 2009-02-18T11:06:50Z <p>FPDF is functional enough and it can be extended easily.</p> <p>DOMPDF is fine for basic HTML to PDF generation, I've used it with Smarty and it works well enough, but has some nasty bugs with tables and page breaks.</p> <p>I haven't tried Zend or TCPDF.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/561670#561670 1 Answer by Dennis Wurster for Which is the best PDF library for PHP? Dennis Wurster 2009-02-18T15:53:07Z 2009-02-18T15:53:07Z <p>I've used both PDFlib and fPDF. If you're making things for yourself, you can get a PDFlib license cheap, but if you're making something for a paying gig, either you or your client will have to pony up ~$1k for a license.</p> <p>It was at that point that I started working with fPDF instead. I found both to be easy to work with, but I liked putting text at an x/y coordinate with PDFlib more than I liked the box-model that fPDF seems to use.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/563459#563459 0 Answer by Saem for Which is the best PDF library for PHP? Saem 2009-02-19T00:16:38Z 2009-02-19T00:16:38Z <p>Having gone down the road of PHP + PDF (via libpdf), I would recommend staying away. Honestly, unless you need an immense amount of flexibility and have access to, or are up for writing, a very good layout manager, it is flat out a giant waste of time. You might be lucky in that what you're trying to produce is very simplistic.</p> <p>I would recommend building up templates in OpenOffice, you could probably get away with hand coding them once, populating them from the PHP side, and then have OO output a PDF. More often than not, it'll look much better than anything produced automagically.</p> <p>Mind you, the above might get hairy if you need to have an enormous amount of control.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/1406687#1406687 4 Answer by JasonMichael for Which is the best PDF library for PHP? JasonMichael 2009-09-10T17:43:31Z 2009-09-18T11:52:14Z <p>I do NOT like pdfLib or fPDF... <a href="http://www.tecnick.com/public/code/cp%5Fdpage.php?aiocp%5Fdp=tcpdf" rel="nofollow">TCPDF</a> is by far the best one, especially if you need to get your work done in a reasonable amount of time (i.e. the boss needs PDF reports from your web application TODAY or this week). These other libraries require you to exactly position items and don't have HTML to PDF conversion. TCPDF does alot of the hard work for you, even if you need to write something using its multicell method. Its a very smart, fast library and will get the job done alot faster than many of the other libraries out there. Plus, it is being updated on a regular basis for PHP 4 and PHP 5 - just about every week there's a new update.</p> <p>A developer who had my job, before me, used pdfLib - took weeks to create a couple reports, formatted the way the company needed them. Using TCPDF, I had ninety percent of some more advanced reports done in a few hours.</p> <p>Also, TCPDF doesn't require anything to be compiled or added to your server - you just tar/unzip it to your server into an appropriate path, and its ready to go.</p> <p>You can find <a href="http://www.tecnick.com/public/code/cp%5Fdpage.php?aiocp%5Fdp=tcpdf%5Fexamples" rel="nofollow">example of TCPDF here</a>.</p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/1444020#1444020 2 Answer by santosh for Which is the best PDF library for PHP? santosh 2009-09-18T11:41:00Z 2009-09-18T20:31:10Z <p>I personal recommend command line application instead of any php libraries.</p> <p><strong>Reasons :</strong> </p> <ol> <li><p>PHP libraries need more time and memory (cache) for conversion process </p></li> <li><p>They need well formatted html pages only, otherwise through errors or warning</p></li> <li><p>Not support for external style sheet.</p></li> </ol> <p><strong>Command Line Tool:</strong> </p> <ol> <li>If run your script on Linux server then I suggest command line tool.</li> </ol> <p><strong>Reasons :</strong> </p> <ol> <li><p>They are extremely fast as compared to PHP libraries.</p></li> <li><p>Support css. </p></li> <li><p>Accept non well formatted html. </p></li> </ol> <p><strong>Which command line tool to use?</strong> </p> <ol> <li>wkhtmltopdf </li> <li>htmltopdf</li> <li>html2pdf</li> </ol> <p>for more information refer <a href="http://stackoverflow.com/questions/1403820/html-to-pdf-not-pdf-to-html-in-php">http://stackoverflow.com/questions/1403820/html-to-pdf-not-pdf-to-html-in-php</a></p> http://stackoverflow.com/questions/560583/which-is-the-best-pdf-library-for-php/1444043#1444043 1 Answer by James Hall for Which is the best PDF library for PHP? James Hall 2009-09-18T11:45:10Z 2009-09-18T11:45:10Z <p>PrinceXML is an amazing PDF generation tool and can be easily integrated into PHP applications using the provided scripts. It comes with a high price tag, but the output is beautiful. Create your documents in HTML and use CSS to style your documents. You can do impressive page flow, page numbering, headers etc all in CSS.</p> <p><a href="http://www.princexml.com/" rel="nofollow">PrinceXML</a></p>