Generate PDF from HTML PHP

前端 未结 4 1449
情深已故
情深已故 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)

提交回复
热议问题