Advertisement
| 10.10.2008 at 05:08AM PDT, ID: 23803845 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: |
$pdf =& new FPDI();
// set the sourcefile
$pages=$pdf->setSourceFile($filename);
// import pages one after the other
for($i = 1; $i < $pages; $i ++) {
// add a page
//echo memory_get_usage() . "\n";
$pdf->AddPage();
$tplIdx = $pdf->importPage($i);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx);
echo memory_get_usage();
// write text with link to www.fpdf.org website
$pdf->SetFont('Arial');
$pdf->SetTextColor(255,102,102);
$pdf->SetXY(15, 15); // X (cm), Y (cm)
$pdf->Write(0,$signature_text,'http://www.address.cc');
//$pdf->Write(0,'w w w . f p d f . o r g');
}
$pdf->Output('newpdf.pdf', 'D');
|
Advertisement