Commit 474e5dae9bb0d56098895ed316c0800d8dc694bd
1 parent
28c9cdc976
Exists in
master
tfpdf_demo: set document properties; fix issue with font name
Showing 1 changed file with 8 additions and 1 deletions Inline Diff
tfpdf_demo
View file @
474e5da
#!/usr/bin/env php | 1 | 1 | #!/usr/bin/env php | |
2 | 2 | |||
<?php | 3 | 3 | <?php | |
/** | 4 | 4 | /** | |
* FILENAME: | 5 | 5 | * FILENAME: | |
* tfpdf_demo | 6 | 6 | * tfpdf_demo | |
* | 7 | 7 | * | |
* DESCRIPTION: | 8 | 8 | * DESCRIPTION: | |
* Demonstration of the tFPDF PHP Library for generating PDF files | 9 | 9 | * Demonstration of the tFPDF PHP Library for generating PDF files | |
* | 10 | 10 | * | |
*/ | 11 | 11 | */ | |
12 | 12 | |||
/** | 13 | 13 | /** | |
Links: | 14 | 14 | Links: | |
- https://packagist.org/packages/rev42/tfpdf | 15 | 15 | - https://packagist.org/packages/rev42/tfpdf | |
- https://packagist.org/packages/setasign/fpdi | 16 | 16 | - https://packagist.org/packages/setasign/fpdi | |
- http://www.fpdf.org/ | 17 | 17 | - http://www.fpdf.org/ | |
- http://www.fpdf.org/en/doc/index.php | 18 | 18 | - http://www.fpdf.org/en/doc/index.php | |
- http://www.fpdf.org/en/tutorial/index.php | 19 | 19 | - http://www.fpdf.org/en/tutorial/index.php | |
- http://www.fpdf.org/en/tutorial/tuto5.htm (Tables) | 20 | 20 | - http://www.fpdf.org/en/tutorial/tuto5.htm (Tables) | |
- http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | 21 | 21 | - http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | |
- http://www.fpdf.org/en/script/script92.php (Documentation of UTF-8 script) | 22 | 22 | - http://www.fpdf.org/en/script/script92.php (Documentation of UTF-8 script) | |
23 | 23 | |||
This script also requires FPDI to load PDF documents into memory | 24 | 24 | This script also requires FPDI to load PDF documents into memory | |
- https://www.setasign.com/products/fpdi/about/ | 25 | 25 | - https://www.setasign.com/products/fpdi/about/ | |
- https://www.setasign.com/products/fpdi/manual/#p-200 | 26 | 26 | - https://www.setasign.com/products/fpdi/manual/#p-200 | |
27 | 27 | |||
NOTE the line 'use tFPDF as FPDF;' needs to be added to the FPDI | 28 | 28 | NOTE the line 'use tFPDF as FPDF;' needs to be added to the FPDI | |
library, specifically in vendor/setasign/fpdi/fpdi_bridge.php, line 19, | 29 | 29 | library, specifically in vendor/setasign/fpdi/fpdi_bridge.php, line 19, | |
for FPDI to work | 30 | 30 | for FPDI to work | |
31 | 31 | |||
Extra scripts that might come in handy: | 32 | 32 | Extra scripts that might come in handy: | |
- Bookmarks - http://www.fpdf.org/en/script/script1.php | 33 | 33 | - Bookmarks - http://www.fpdf.org/en/script/script1.php | |
- Table with MultiCells - http://www.fpdf.org/en/script/script3.php | 34 | 34 | - Table with MultiCells - http://www.fpdf.org/en/script/script3.php | |
- Rounded Rectangles - http://www.fpdf.org/en/script/script35.php | 35 | 35 | - Rounded Rectangles - http://www.fpdf.org/en/script/script35.php | |
- Table of Contents - http://www.fpdf.org/en/script/script73.php | 36 | 36 | - Table of Contents - http://www.fpdf.org/en/script/script73.php | |
37 | 37 | |||
*/ | 38 | 38 | */ | |
39 | 39 | |||
$loader = require __DIR__ . '/vendor/autoload.php'; | 40 | 40 | $loader = require __DIR__ . '/vendor/autoload.php'; | |
$loader->register(); | 41 | 41 | $loader->register(); | |
42 | 42 | |||
$pdf = new FPDI('p', 'mm', 'Letter'); | 43 | 43 | $pdf = new FPDI('p', 'mm', 'Letter'); | |
44 | 44 | |||
45 | // Set up document properties | |||
46 | $pdf->SetCreator('IODP Science Support Office'); | |||
47 | $pdf->SetAuthor('IODP Science Support Office'); | |||
48 | $pdf->SetTitle('Demo of TCPDF for generating IODP Proposals'); | |||
49 | $pdf->SetSubject('IODP Proposals'); | |||
50 | $pdf->SetKeywords('IODP proposal ocean drilling core expedition'); | |||
51 | ||||
// write out the contents of the first page | 45 | 52 | // write out the contents of the first page | |
$pdf->AddPage(); | 46 | 53 | $pdf->AddPage(); | |
$topLink = $pdf->AddLink(); | 47 | 54 | $topLink = $pdf->AddLink(); | |
$pdf->SetLink($topLink); | 48 | 55 | $pdf->SetLink($topLink); | |
$pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true); | 49 | 56 | $pdf->AddFont('DejaVu','','DejaVuSans.ttf',true); | |
$pdf->SetFont('DejaVu', '', 20); | 50 | 57 | $pdf->SetFont('DejaVu', '', 20); | |
$pdf->SetFont('', 'U'); | 51 | 58 | $pdf->SetFont('', 'U'); | |
$ssfLink = $pdf->AddLink(); | 52 | 59 | $ssfLink = $pdf->AddLink(); | |
$pdf->Write(10, "Jump to SSF for SHACK-10A", $ssfLink); | 53 | 60 | $pdf->Write(10, "Jump to SSF for SHACK-10A", $ssfLink); | |
$pdf->SetFont(''); | 54 | 61 | $pdf->SetFont(''); | |
$pdf->Ln(); | 55 | 62 | $pdf->Ln(); | |
$pdf->Write(10, "This is some text on the first page; "); | 56 | 63 | $pdf->Write(10, "This is some text on the first page; "); | |
$pdf->Ln(); | 57 | 64 | $pdf->Ln(); | |
$pdf->Write(10, "Привет! Этот немного текста."); | 58 | 65 | $pdf->Write(10, "Привет! Этот немного текста."); | |
59 | 66 | |||
// load up the Site Summary Figure to go on page #2 | 60 | 67 | // load up the Site Summary Figure to go on page #2 | |
$ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | 61 | 68 | $ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | |
62 | 69 | |||
//print "Page count of site summary figure form is $ssfPageCount\n"; | 63 | 70 | //print "Page count of site summary figure form is $ssfPageCount\n"; | |
64 | 71 | |||
// import the SSF page | 65 | 72 | // import the SSF page | |
$ssfTemplate= $pdf->importPage(1); | 66 | 73 | $ssfTemplate= $pdf->importPage(1); | |
// NOTE the page sizes are in millimeters, as that's what we specified when | 67 | 74 | // NOTE the page sizes are in millimeters, as that's what we specified when | |
// the PDF document was first created (above) | 68 | 75 | // the PDF document was first created (above) | |
//print "Page size of site summary figure PDF is: "; | 69 | 76 | //print "Page size of site summary figure PDF is: "; | |
//$ssfSize = $pdf->getTemplateSize($ssfTemplate); | 70 | 77 | //$ssfSize = $pdf->getTemplateSize($ssfTemplate); | |
//print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | 71 | 78 | //print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | |
72 | 79 | |||
// add the SSF file to the 2nd page | 73 | 80 | // add the SSF file to the 2nd page | |
$pdf->AddPage(); | 74 | 81 | $pdf->AddPage(); | |
$pdf->SetLink($ssfLink); | 75 | 82 | $pdf->SetLink($ssfLink); |