Generate PDF from HTML PHP

前端 未结 4 1448
情深已故
情深已故 2020-12-04 13:37

I want to generate PDF from a PHP file that includes HTML controls like textbox, and textarea. I attached CSS in the same. I tried FPDF, DOMPDF and TCPDF, but still I don\'t

相关标签:
4条回答
  • 2020-12-04 14:15

    If I understand your needs correctly I don't think any PHP-PDF class would do that.

    Mostly you could insert only text and images to a PDF file, so if you would want something that looks like an HTML element you would need to insert it as an image.

    Usually just putting HTML doesn't mean all your elements would stay intact in the PDF . (Different world, after all)

    0 讨论(0)
  • 2020-12-04 14:20

    http://www.fpdf.org/ is the site having a great HTML-to-PDF class which work well. I am using it, but you have to first study its functionality and then start.

    0 讨论(0)
  • 2020-12-04 14:25

    EDIT : Found another solution for it, TCPDF is a FLOSS PHP class for generating PDF documents. Looks more dominating library.

    "PRINCEXML" is a good library (not completely free now).

    Others:

    If your meaning is to create a PDF file from PHP, pdflib will help you (as some other suggested).

    Else, if you want to convert an HTML page in PDF via PHP, you'll find a little trouble outta here.. For three years I have been trying to do it as best as I can.

    So, the options I know are:

    HTML2PS: same of DOMPDF, but this one convert first in .ps (Ghostscript), then, in whatever format you need (PDF, JPEG, PNG). For me it is a little better than dompdf, but I have the same speed problem.. Oh, it has better compatibility with CSS.

    Those two are PHP classes, but if you can install some software on the server, and access it through passthru() or system(), have a look at these too:

    wkhtmltopdf: based on webkit (safari's wrapper), is really fast and powerful... It seem like it is the best one (atm) for converting HTML pages to PDF on the fly, taking only two seconds for a three pages XHTML document with CSS 2. It is a recent project. Anyway, the Google Code page is often updated.

    htmldoc: this one is a tank, it really never stops orcrashes... The project seems to have died in 2007, but anyway if you don't need CSS compatibility this can be nice for you.

    ** Thumbs Up For Strae.

    0 讨论(0)
  • mpdf is another option that you could try.

    0 讨论(0)
提交回复
热议问题