Commit fdaace8163e2728a46cb6a7971f60f6499eb6267
1 parent
20446770a1
Exists in
master
fpdf_demo: fixed commented template variable
Showing 1 changed file with 1 additions and 1 deletions Inline Diff
fpdf_demo
View file @
fdaace8
#!/usr/bin/env php | 1 | 1 | #!/usr/bin/env php | |
2 | 2 | |||
<?php | 3 | 3 | <?php | |
/** | 4 | 4 | /** | |
* FILENAME: | 5 | 5 | * FILENAME: | |
* fpdf_demo | 6 | 6 | * fpdf_demo | |
* | 7 | 7 | * | |
* DESCRIPTION: | 8 | 8 | * DESCRIPTION: | |
* Demonstration of the FPDF PHP Library for generating PDF files | 9 | 9 | * Demonstration of the FPDF PHP Library for generating PDF files | |
* | 10 | 10 | * | |
*/ | 11 | 11 | */ | |
12 | 12 | |||
/** | 13 | 13 | /** | |
Links: | 14 | 14 | Links: | |
- https://packagist.org/packages/itbz/fpdf | 15 | 15 | - https://packagist.org/packages/itbz/fpdf | |
- http://www.fpdf.org/ | 16 | 16 | - http://www.fpdf.org/ | |
- http://www.fpdf.org/en/doc/index.php | 17 | 17 | - http://www.fpdf.org/en/doc/index.php | |
- http://www.fpdf.org/en/tutorial/index.php | 18 | 18 | - http://www.fpdf.org/en/tutorial/index.php | |
- http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | 19 | 19 | - http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | |
- http://www.fpdf.org/en/script/index.php | 20 | 20 | - http://www.fpdf.org/en/script/index.php | |
21 | 21 | |||
This script also requires FPDI to load PDF documents into memory | 22 | 22 | This script also requires FPDI to load PDF documents into memory | |
- https://www.setasign.com/products/fpdi/about/ | 23 | 23 | - https://www.setasign.com/products/fpdi/about/ | |
- https://www.setasign.com/products/fpdi/manual/#p-200 | 24 | 24 | - https://www.setasign.com/products/fpdi/manual/#p-200 | |
25 | 25 | |||
NOTE the line 'use fpdf\FPDF as FPDF;' needs to be added to the FPDI | 26 | 26 | NOTE the line 'use fpdf\FPDF as FPDF;' needs to be added to the FPDI | |
library, specifically in vendor/setasign/fpdi/fpdi_bridge.php, line 19, | 27 | 27 | library, specifically in vendor/setasign/fpdi/fpdi_bridge.php, line 19, | |
for FPDI to work | 28 | 28 | for FPDI to work | |
*/ | 29 | 29 | */ | |
30 | 30 | |||
$loader = require __DIR__ . '/vendor/autoload.php'; | 31 | 31 | $loader = require __DIR__ . '/vendor/autoload.php'; | |
$loader->register(); | 32 | 32 | $loader->register(); | |
33 | 33 | |||
$pdf = new FPDI('p', 'mm', 'Letter'); | 34 | 34 | $pdf = new FPDI('p', 'mm', 'Letter'); | |
35 | 35 | |||
// write out the contents of the first page | 36 | 36 | // write out the contents of the first page | |
$pdf->AddPage(); | 37 | 37 | $pdf->AddPage(); | |
$topLink = $pdf->AddLink(); | 38 | 38 | $topLink = $pdf->AddLink(); | |
$pdf->SetLink($topLink); | 39 | 39 | $pdf->SetLink($topLink); | |
$pdf->SetFont('Arial', '', 20); | 40 | 40 | $pdf->SetFont('Arial', '', 20); | |
$pdf->SetFont('', 'U'); | 41 | 41 | $pdf->SetFont('', 'U'); | |
$ssfLink = $pdf->AddLink(); | 42 | 42 | $ssfLink = $pdf->AddLink(); | |
$pdf->Write(10, "Jump SSF for SHACK-10A", $ssfLink); | 43 | 43 | $pdf->Write(10, "Jump SSF for SHACK-10A", $ssfLink); | |
$pdf->SetFont(''); | 44 | 44 | $pdf->SetFont(''); | |
$pdf->Ln(); | 45 | 45 | $pdf->Ln(); | |
$pdf->Write(10, "This is some text on the first page; "); | 46 | 46 | $pdf->Write(10, "This is some text on the first page; "); | |
$pdf->Ln(); | 47 | 47 | $pdf->Ln(); | |
$pdf->Write(10, "Привет! Этот немного текста."); | 48 | 48 | $pdf->Write(10, "Привет! Этот немного текста."); | |
49 | 49 | |||
// load up the Site Summary Figure to go on page #2 | 50 | 50 | // load up the Site Summary Figure to go on page #2 | |
$ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | 51 | 51 | $ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | |
52 | 52 | |||
//print "Page count of site summary figure form is $ssfPageCount\n"; | 53 | 53 | //print "Page count of site summary figure form is $ssfPageCount\n"; | |
54 | 54 | |||
// import the SSF page | 55 | 55 | // import the SSF page | |
//$ssfTemplate= $pdf->importPage(1); | 56 | 56 | $ssfTemplate= $pdf->importPage(1); | |
// NOTE the page sizes are in millimeters, as that's what we specified when | 57 | 57 | // NOTE the page sizes are in millimeters, as that's what we specified when | |
// the PDF document was first created (above) | 58 | 58 | // the PDF document was first created (above) | |
//print "Page size of site summary figure PDF is: "; | 59 | 59 | //print "Page size of site summary figure PDF is: "; | |
//$ssfSize = $pdf->getTemplateSize($ssfTemplate); | 60 | 60 | //$ssfSize = $pdf->getTemplateSize($ssfTemplate); | |
//print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | 61 | 61 | //print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | |
62 | 62 | |||
// add the SSF file to the 2nd page | 63 | 63 | // add the SSF file to the 2nd page | |
$pdf->AddPage(); | 64 | 64 | $pdf->AddPage(); | |
$pdf->SetLink($ssfLink); | 65 | 65 | $pdf->SetLink($ssfLink); | |
$pdf->useTemplate($ssfTemplate); | 66 | 66 | $pdf->useTemplate($ssfTemplate); | |
$pdf->SetFont('Helvetica'); | 67 | 67 | $pdf->SetFont('Helvetica'); |