Initial commit

This commit is contained in:
2020-11-02 15:46:52 +01:00
commit 17f974127c
13788 changed files with 1921656 additions and 0 deletions

19
www/lib/fpdf/demo.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
error_reporting (E_ALL);
define('FPDF_FONTPATH','font/');
require('fpdi.php');
$pdf= new fpdi();
$pagecount = $pdf->setSourceFile("pdfdoc.pdf");
$tplidx = $pdf->ImportPage(1);
$pdf->addPage();
$pdf->useTemplate($tplidx,10,10,90);
$pdf->Output("newpdf.pdf","F");
$pdf->closeParsers();
?>