Hi guys, I'm wondering if anyone knows any kind of software that I can buy to install in a linux server that can automatically convert HTML to PDF format. I do search on google but it doesn't help me much. Your help will be much appriciated. cheers
I think it can be do with cups or use the command-line programs html2ps and ps2pdf, then concatenate them with pdfjoin.
If you're after a PHP library/class then there's loads in Google: http://www.rustyparts.com/pdf.php http://www.digitaljunkies.ca/dompdf/ http://sourceforge.net/projects/html2fpdf
Hi, No I'm not looking for a pdf class or library. I'm looking for a product that I can buy to install on linux server platform. This pdf product is able convert any html page to pdf format. I found many product, but they all run on Microsoft platform.
You could try out pdfonline.com, it's a simple online platform called Web2PDF. If not, maybe something like dompdf would work
http://sourceforge.net/projects/html2fpdf will do the trick 1. Just set up a database to store all the pages you want to make PDFs. 2. Set up a cron that scrapes the next page in the db and sends it to fpdf 3. save new PDF to a folder It's probably a 2 hour project
Thanks guys, but the reason I'm looking for a html to pdf product, because all the open source pdf library is lack of css support. I developed many reports in dompdf library but there's more of requirement that dompdf doesn't support like css absolute position and etc.. cheers.