Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anybody advise on the best PDF generator class/library to use with PHP? Preferably one which is maintained.

I am aware that this is a duplicate of the following question, however, the accepted answer is over 3 years old and I want to know whether the answer has changed since this time.

Best pdf generator in PHP , mpdf or fpdf?

Thank you

share|improve this question
dompdf is by far the easiest I've tried, but maybe not the most flexible. Depends what you're trying to do.. – Ben Sep 10 '12 at 11:00
Thank you for your advice, but this class seems somewhat underdeveloped at the moment. I think I will stick with the tcpdf class :-) – Ben Carey Sep 10 '12 at 11:30

1 Answer

up vote 2 down vote accepted

Try TCPDF, have good features http://www.tcpdf.org/examples.php

Also simple HTML to PDF Converter API in (PHP, C#, ASP.net C#, ASP VB.net, JAVA,...)

from "PDF CROWD" http://pdfcrowd.com/html-to-pdf-api/

very simple to use, but I think this API may need to purchase even they provide a free test account..

share|improve this answer
Thank you very much, I am currently looking at the tcpdf one. Do you know whether it does HTML to PDF? – Ben Carey Sep 10 '12 at 11:17
Sorry for the delayed reply... see the examples "6" in tcpdf.org [tcpdf.org/examples/example_006.pdf], It support HTML, If you use html file - I think you have to read the file to one variable [$html_file_content = fopen('myfile.html', 'r');] and then convert to PDF. – Mohamed Navas Sep 15 '12 at 17:54
Thank you very much, did see that but wanted to make sure it worked well as they cannot always be trusted :-) – Ben Carey Sep 17 '12 at 7:32
There is problem with image reading. You have to specify the absolute path not relative. – Mohamed Navas Sep 17 '12 at 7:41
I always specify absolute not relative anyway :-) – Ben Carey Sep 17 '12 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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