Which is th best pdf generator for php, i know some opensources libs mpdf and fpdf.. Thanx in advance

link|improve this question

47% accept rate
1  
this question is a duplicate of stackoverflow.com/questions/560583/… (where the answers are also mostly in favour of tcpdf) – Potherca Jul 26 '11 at 8:41
feedback

closed as not constructive by bmargulies, Robert Harvey Sep 10 '11 at 2:57

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

personally i'd rather go with tcpdf which is an ehnanced and mantained version of fpdf.

link|improve this answer
1  
you didn't specify reasons - one huge one is Unicode support in tcpdf, which fpdf utterly lacks. tcpdf is also still actively maintained. and, it's also got a decent OO architecture. word to the wise: fpdf is basically an old thing that got superseded by tcpdf. – zanlok Dec 13 '10 at 22:18
tcpdf is missing critical features like font embedding and subsetting (important for asian languages). – velcrow Aug 31 '11 at 22:33
feedback

http://www.fpdf.org/

link|improve this answer
feedback

From the mpdf site: "mPDF is a PHP class which generates PDF files from UTF-8 encoded HTML. It is based on FPDF and HTML2FPDF, with a number of enhancements."

mpdf is superior to FPDF for language handling and UTF-8 support. For CJK support it not only supports font embedding, but font subsetting (so your CJK PDFs are not oversized). TCPDF and FPDF have nothing on the UTF-8 and Font support of mpdf. It even comes with some open source fonts as of version 5.0.

link|improve this answer
feedback

The Zend Framework's Zend_Pdf is really good too. It's on par with pdflib in terms of control of output and complexity and is more portable because its a pure php solution. That said, its slower and uses more memory than pdflib. Pecl modules are always more efficient than a php solution.

DOMPdf is the easiest way to make a pdf quickly. Like Mike said, feed it html and it outputs a pdf. Under the hood, it has the option to use either r&ospdf or pdflib as the rendering engine.

link|improve this answer
feedback

I'm using ezpdf. It's a pdf class, fast and very easy to use. Also it has a good manual with examples.

link|improve this answer
feedback

This is just a quick review of how fPDF stands up against tcPDF in the area of performance at each libraries most basic functions.

SPEED TEST

17.0366 seconds to process 2000 PDF files using fPDF || 79.5982 seconds to process 2000 PDF files using tcPDF

FILE SIZE CHECK (in bytes)

788 fPDF || 1,860 tcPDF

The code used was as identical as possible and renders just a clean PDF file with no text. This is also using the latest version of each library as of June 22, 2011.

link|improve this answer
There are a number of performance enhancements that can massively improve the TCPDF speed (I went from 1 minute in creating a single file to about 0.5 seconds): tcpdf.org/performances.php – Dan Smart Mar 15 at 8:25
feedback

Try TCPDF. I find it the best so far.

For detailed tutorial on using the two most popular pdf generation classes: TCPDF and FPDF.. please follow this link: PHP: Easily create PDF on the fly with TCPDF and FPDF

Hope it helps.

link|improve this answer
feedback

I found mpdf better than tcpdf in terms of html rendering. It can parse css styles much better and create pdf that look very similar to the original html.

mpdf even supports css things like border-radius and gradient etc.

I am surprised to see why mpdf is so less talked about when it comes to html to pdf.

Check out the examples here http://www.mpdf1.com/mpdf/examples

I found it useful for designing invoices, receipts and simple prints etc. However the website itself says that pdfs generated from mpdf tend to be larger in size.

link|improve this answer
feedback

I personally generate XSL:FO from PHP and use Apache FOP to convert it to PDF. Not a PHP-native solution, not very efficient either, but it works well even if you need to generate PDF with very complex layouts.

link|improve this answer
feedback

Personally I prefer to use [http://www.digitaljunkies.ca/dompdf/ dompdf] for simple PDF pages as it is very quick. you simply feed it an HTML source and it will generate the required page.

however for more complex designs i prefer the more classic [http://www.pdflib.com/ pdflib] which is available as a pecl for PHP. it has greater control over designs and allows you do do more complex designs like pixel-perfect forms.

link|improve this answer
feedback

http://sourceforge.net/projects/html2ps/, is the best if you need the css and 3c compatibily.

if you can install software on your server, i suggest you to use http://code.google.com/p/wkhtmltopdf/.

There is also a drupal module using wkhtmltopdf :)

PHP take many resources to convert html in pdf, imho, php is not the right language to do that (if you expect a large numbers of coversion or large files to convert)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.