Posted in

Crear un PDF con PHP (html2pdf)

Clase para crear un PDF.

require_once('pdf/html2fpdf.php');
// ACTIVAR UN BUFFER
ob_start();

Content HTML

// Variable con el buffer
$html=ob_get_contents();
// limipiando el buffer
ob_end_clean();
$pdf = new HTML2FPDF();
$pdf->AddPage();
$pdf->WriteHTML($html);
$pdf->Output('miprimerpdf.pdf','I');

Descargar ejemplo

html2pdf_v4.03_php5

Deixa un comentari

L'adreça electrònica no es publicarà. Els camps necessaris estan marcats amb *


The reCAPTCHA verification period has expired. Please reload the page.