N
N
Nikita Gushchin2014-07-26 01:50:17
PHP
Nikita Gushchin, 2014-07-26 01:50:17

How to generate a PDF file from HTML or modify an existing one?

I need to generate a PDF file - something like an invoice.
Are there any options to create a PDF with placeholders and replace them with the desired data and save?
If not, is it possible to somehow generate PDF from HTML without much hemorrhoids?
I tried various options:
1) FPDF paired with FPDI - it didn't start for me. The output always produced a corrupted file that could not be opened. Moreover, in the PDF output mode, a bunch of warnings about dividing by 0 flew out to the browser ...

The code
$pdf = new FPDI();

    $pdf->addPage();

    $pageCount = $pdf->setSourceFile("templ.pdf");
    $tplIdx = $pdf->importPage(1);

    $pdf->useTemplate($tplIdx, 0, 0, 0, 0, true);

    $pdf->Output('test.pdf','F');


2) TCPDF - in principle, it works. But CSS support is very weak. Even banal paddings are not set (at least I did not succeed ... )

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Taratin, 2014-07-26
@iNikNik

The thing is paid, but worth the money
www.princexml.com

V
Vitaly Zheltyakov, 2014-07-26
@VitaZheltyakov

"Are there any options to create a PDF with placeholders and replace them with the desired data and save?"
Yes, something like that is possible. You can immediately generate a finished PDF using FPDF.
"If not, is it possible to somehow generate PDF from HTML without much hemorrhoids?"
- Yes, you can. You form html for printing, and then in FF using doPDF you convert to pdf

M
Misha7, 2014-07-26
@Misha7

PHP has functions for working with files. www.php.su/articles/?cat=fs&page=005 get the content of the html file. Well, creating a pdf with html content
php.net/manual/en/intro.pdf.php

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question