first commit
This commit is contained in:
19
standort/prints/demo.php
Normal file
19
standort/prints/demo.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
error_reporting (E_ALL);
|
||||
|
||||
define('FPDF_FONTPATH','font/');
|
||||
require('as_utf_class.php');
|
||||
|
||||
$pdf= new utfFPDF();
|
||||
|
||||
$pagecount = $pdf->setSourceFile("pdfdoc.pdf");
|
||||
|
||||
$tplidx = $pdf->ImportPage(1);
|
||||
|
||||
$pdf->addPage();
|
||||
$pdf->useTemplate($tplidx,10,10,90);
|
||||
|
||||
$pdf->Output("newpdf.pdf","F");
|
||||
$pdf->closeParsers();
|
||||
|
||||
?>
|
Reference in New Issue
Block a user