DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

Extension manual hhdev_fpdf

A regular manual will follow. The following example should only show how to start.

"Minimal example" example from FPDF.org

/** @var \HeikoHardt\HhdevFpdf\Fpdf $pdf */
$pdf = new \HeikoHardt\HhdevFpdf\Fpdf();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();