up vote 74 down vote favorite
52
share [g+] share [fb]

I'm wondering which is the best PDF creation library for PHP, mainly for creating PDFs from scratch (not as much HTML to PDF)?

I have worked with FPDF for quite a while now, but it's getting quite old and hasn't had much for updates. I found TCPDF 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. FPDI also supports TCPDF which is nice as I have used it before and found it be useful.

I have also seen DOMPDF but it too hasn't had many updates for quite some time and is lacking a lot of functionality for general PDF generation. Zend (Zend_Pdf) 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.

What other libraries are there and what have your experiences with them been with the above or other libraries?

link|improve this question
4  
When I researched this question a while back, I chose FPDF, which I now regret. No support for spot colors was the pitfall for me. Here's a list of the benefits of TCPDF over FPDF that I found today: forums.devshed.com/showpost.php?p=2129930&postcount=4 – skriv Mar 11 '10 at 18:38
1  
@neoneye I haven't had this same issue with FPDI. Is there some part of it that requires Zend Guard? It looks like most things require either Zend or Ioncube. Ioncube being free for the decoder and very easy to install. – Darryl Hein Sep 4 '10 at 15:05
feedback

closed as not constructive by Jeff Atwood Sep 11 '11 at 23: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.

18 Answers

up vote 54 down vote accepted

I do NOT like pdfLib or fPDF... TCPDF 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.

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.

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.

You can find example of TCPDF here.

link|improve this answer
Thanks for the advice. – garcon1986 May 17 '10 at 14:55
If TCPDF is the best one, as you say, then that casts a fairly sad image over the state of PDF libraries in PHP. I find TCPDF to be inordinately complex, slow, and needlessly bloated in many areas. I guess that means I ought to go write my own. – greyfade Sep 1 '11 at 22:06
6  
Note the VERY unfriendly license: LGPL + "Additionally, YOU CAN'T REMOVE ANY TCPDF COPYRIGHT NOTICE OR LINK FROM THE GENERATED PDF DOCUMENTS." (tcpdf.org/license.php). Do you want that ugly red logo on each page of your PDFs? :) – johndodo Sep 22 '11 at 10:34
feedback

FPDF is functional enough and it can be extended easily.

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.

I haven't tried Zend or TCPDF.

link|improve this answer
2  
+1 for mentioning DOMPDF bugs. I have been fighting them for some time. – Elijah Feb 28 '09 at 10:19
It occasionally cripples one of my invoice functions, i've had to put some rather odd looking page breaks into my templates to work around the overflow errors. Not sure if it's even being actively maintained anymore. Maybe time to find another – Neil Aitken Feb 28 '09 at 11:48
+1 for mentioning DOMPDF bugs as well. I have been using DOMPDF and it's been hell working around the table and page break issues... it looks like (I have yet to try it out) TCPDF is a better solution.. will see soon enough heh. – JSD Dec 17 '10 at 20:56
feedback

I personal recommend command line application instead of any php libraries.

Reasons :

  1. PHP libraries need more time and memory (cache) for conversion process

  2. They need well formatted html pages only, otherwise through errors or warning

  3. Not support for external style sheet.

Command Line Tool:

  1. If run your script on Linux server then I suggest command line tool.

Reasons :

  1. They are extremely fast as compared to PHP libraries.

  2. Support css.

  3. Accept non well formatted html.

Which command line tool to use?

  1. wkhtmltopdf
  2. htmltopdf
  3. html2pdf

for more information refer http://stackoverflow.com/questions/1403820/html-to-pdf-not-pdf-to-html-in-php

link|improve this answer
HTMLDIO is IMHO the best command line tool now. – xmedeko Apr 1 '11 at 8:36
wkhtmltopdf sucks with multipage tables. Is more difficult to setup headers and footers. – andho Aug 21 '11 at 9:19
HtmlDoc does not support css – andho Aug 21 '11 at 10:05
i use TCPDF and WKHTMLTOPDF too, they can be useful in a different way. – iim.hlk Sep 1 '11 at 20:24
@xmedeko Tried searching for HTMLDIO, couldn't find. Link pls? – abel Oct 21 '11 at 13:06
show 1 more comment
feedback

I have tried mPDF and it worked flawlessly. It is useful when you already have HTML content and you want to turn it into PDF without external tools like wkhtmltopdf et al. The library even supports stylesheets, there is no need for "ugly" HTML.

Keep in mind though that this library will parse your HTML and CSS in PHP! This may get CPU and/or memory intensive if you have complex documents with tables. I have tested it with a simple invoice (header table with address, invoice item table with 5 items, footer table) and it took 0.3 seconds to render on a 2.6 GHz Core 2 Duo, consuming 9 MB. For my intents and purposes, this was absolutely sufficient. The author of the library has tested it with a 400 page book - it works but takes 90 seconds to render.

link|improve this answer
It's taking a long time for me to render 1 page document :/ – andho Aug 21 '11 at 10:06
1  
@andho: depends on the page - chiborg described it quite nicely. However for most purposes low development time and low size of generated PDF documents is more important than pure speed. Note that MPDF supports partial embedding of fonts - which means lowest possible size while still maintaining accurate representation. – johndodo Nov 19 '11 at 9:22
feedback

There is more info on this topic in Convert HTML + CSS to PDF with PHP?

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.

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 Prince XML. It's quick, robust and, yes, it's expensive (USD 3800 for a server license).

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.

It also passed the Acid2 test, which not even some browsers can claim.

link|improve this answer
feedback

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.

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.

Mind you, the above might get hairy if you need to have an enormous amount of control.

link|improve this answer
1  
I have been creating PDFs for 3 years and haven't found it to be that difficult. It's just like creating any other graphic or even a webpage that you are often dealing with a few pixels where or there. Populating templates of 500+ page PDFs would not work for clients. – Darryl Hein Feb 19 '09 at 4:45
feedback

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.

PrinceXML

link|improve this answer
+1 for PrinceXML, it's absolutely worth the price. The results are stunning and it works like a charm. It integrates extremely well with the server environment, font libraries, etc. It understands a lot of CSS and it is extremely fast. – markus Nov 21 '09 at 17:32
feedback

Try this one

http://www.fpdf.org/

link|improve this answer
What are you experiences with FPDF? I did mention it in the question. – Darryl Hein Feb 18 '09 at 10:58
feedback

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.

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.

link|improve this answer
Can you describe the difference between the 2 models a bit more? – Darryl Hein Feb 18 '09 at 16:29
fPDF example: fpdf.org/en/tutorial/tuto1.htm. It's possible that there may be a better way. I have only used fPDF for one very small project so far. PDFlib: You can use the PDF_show_xy() to put text wherever you want. tu-chemnitz.de/docs/php.en/ref.pdf.html – Dennis Wurster Feb 19 '09 at 16:09
feedback

About the documentation for TCPDF - have you checked the examples? I grabbed the code and put it into the httpd folder and navigated to the examples page - to check if it actually works. And then I looked into the code and It is very easy to see what goes on. And I think it will be a walk in the park to implement into my solution, tomorrow.

You can also email the guys at tcpdf for some help I think they are eager to help.

Still your application can be hard to intregrate TCPDF into I don't know. But I just thought you didn't check the actual code in the examples - I could be wrong ;-)

link|improve this answer
feedback

I tried MPDF - looks good to me (good documentation). And actually works faster than TCPDF ;-) FPDF needs to much work to be implemented. But actually MPDF simply extends the functionality of FPDF Cool. Thank you for pointing me in that direction ;-)

link|improve this answer
feedback

I found mpdf better than tcpdf in terms of html rendering.

tcpdf needs lot of experimenting before you can make a table look proper in the pdf.

mpdf 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" in php.

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

link|improve this answer
feedback

I like pdflib

link|improve this answer
Too bad the full version is to terribly expensive. – Darryl Hein Feb 18 '09 at 11:10
2  
Its a waste of money. TCPDF is the way to go, with far better features. – JasonMichael Sep 10 '09 at 17:46
feedback

I have used ezpdf for several small projects with no problem. http://www.ros.co.nz/pdf/

link|improve this answer
feedback

phpToPDF is an option. Just assign html code into variable and call function to convert html code into PDF. CSS / XHTML supported.

include_once('phpToPDF.php');
$html = '<html><head></head><body>contents of a report.....</body></html>'; 
phptopdf_html($html,'/my_directory/','my_pdf_filename.pdf');
link|improve this answer
Too bad it's based on an API and I can't find any information on who owns the PDF generated by the API. – Darryl Hein Apr 28 '11 at 18:41
feedback

I was using zend_pdf but it seems to me that it dose not have good html table support.I was using fpdf long time before.That was very manageable and very easy to learn.Now I am using TCPDF.As It was based on fpdf so it is easy to learn, more facilities and manageable.

link|improve this answer
feedback

I searched so many sites where they says TCPDF is best one.but i tried it was working forme.i really got happy.then i used it for real code.then i gotta a small problem.i was searching what was the problem? i could not able to find the problem.finally i found the problem which is minor one,but it has made me a mental thing.the problem is that,see my example i given below,

$html .= '<div style="border:10px">hello</div>';===>it works
$html .= "<div style='border:10px'>hello</div>";===>it wont work

so in TCPDF cant able to use single quotation with in the html atribute...very sad

link|improve this answer
Yes, this can be annoying, but it's the way TCPDF is designed. I personally never use single quotes and I think the majority of people use double quotes so it won't be a problem to most people. – Darryl Hein Aug 2 '11 at 16:28
feedback

tcpdf sucks like a baby.. its too damn slow in generating dynamic pdf.. fpdf is somaritively better i beleive.. i've not used dom, though...

link|improve this answer
feedback

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