Commit 4dcc093768d17622e169071c234571fb28d24604
1 parent
f9af74f481
Exists in
master
tcpdf_demo: added demo of PDF bookmarks
Showing 1 changed file with 14 additions and 2 deletions Inline Diff
tcpdf_demo
View file @
4dcc093
#!/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.tcpdf.org/doc/code/classTCPDF-members.html | 17 | 17 | - http://www.tcpdf.org/doc/code/classTCPDF-members.html | |
- http://www.tcpdf.org/examples.php | 18 | 18 | - http://www.tcpdf.org/examples.php | |
- http://www.fpdf.org/ | 19 | 19 | - http://www.fpdf.org/ | |
- http://www.fpdf.org/en/doc/index.php | 20 | 20 | - http://www.fpdf.org/en/doc/index.php | |
- http://www.fpdf.org/en/tutorial/index.php | 21 | 21 | - http://www.fpdf.org/en/tutorial/index.php | |
- http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | 22 | 22 | - http://www.fpdf.org/en/tutorial/tuto6.htm (Links and flowing text) | |
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 | |||
*/ | 28 | 28 | */ | |
29 | 29 | |||
$loader = require __DIR__ . '/vendor/autoload.php'; | 30 | 30 | $loader = require __DIR__ . '/vendor/autoload.php'; | |
$loader->register(); | 31 | 31 | $loader->register(); | |
32 | 32 | |||
// set a default timezone | 33 | 33 | // set a default timezone | |
date_default_timezone_set("America/Los_Angeles"); | 34 | 34 | date_default_timezone_set("America/Los_Angeles"); | |
35 | 35 | |||
//require_once('tcpdf_include.php'); | 36 | 36 | //require_once('tcpdf_include.php'); | |
//$pdf = new TCPDF('p', 'mm', 'Letter', TRUE, 'UTF-8'); | 37 | 37 | //$pdf = new TCPDF('p', 'mm', 'Letter', TRUE, 'UTF-8'); | |
class_exists('TCPDF', true); | 38 | 38 | class_exists('TCPDF', true); | |
$pdf = new FPDI('p', 'mm', 'Letter', TRUE, 'UTF-8'); | 39 | 39 | $pdf = new FPDI('p', 'mm', 'Letter', TRUE, 'UTF-8'); | |
40 | 40 | |||
// Set up document properties | 41 | 41 | // Set up document properties | |
$pdf->SetCreator('IODP Science Support Office'); | 42 | 42 | $pdf->SetCreator('IODP Science Support Office'); | |
$pdf->SetAuthor('IODP Science Support Office'); | 43 | 43 | $pdf->SetAuthor('IODP Science Support Office'); | |
$pdf->SetTitle('Demo of TCPDF for generating IODP Proposals'); | 44 | 44 | $pdf->SetTitle('Demo of TCPDF for generating IODP Proposals'); | |
$pdf->SetSubject('IODP Proposals'); | 45 | 45 | $pdf->SetSubject('IODP Proposals'); | |
$pdf->SetKeywords('IODP proposal ocean drilling core expedition'); | 46 | 46 | $pdf->SetKeywords('IODP proposal ocean drilling core expedition'); | |
47 | 47 | |||
// disable headers and footers on all pages | 48 | 48 | // disable headers and footers on all pages | |
$pdf->setPrintHeader(FALSE); | 49 | 49 | $pdf->setPrintHeader(FALSE); | |
$pdf->setPrintFooter(FALSE); | 50 | 50 | $pdf->setPrintFooter(FALSE); | |
51 | 51 | |||
// write out the contents of the first page | 52 | 52 | // write out the contents of the first page | |
$pdf->AddPage(); | 53 | 53 | $pdf->AddPage(); | |
54 | ||||
55 | // add a target to the top of the first page | |||
$topLink = $pdf->AddLink(); | 54 | 56 | $topLink = $pdf->AddLink(); | |
$pdf->SetLink($topLink); | 55 | 57 | $pdf->SetLink($topLink); | |
//$pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true); | 56 | 58 | ||
59 | // add a bookmark too | |||
60 | // - text, indent level, Y position, target page number, style, color, | |||
61 | // X position, link ID | |||
62 | $pdf->Bookmark("Page 1", 0, 0, '', 'B'); | |||
63 | ||||
64 | // set the font and size | |||
$pdf->AddFont('dejavusanscondensed','','dejavusanscondensed.php',true); | 57 | 65 | $pdf->AddFont('dejavusanscondensed','','dejavusanscondensed.php',true); | |
//$pdf->SetFont('DejaVu', '', 20); | 58 | |||
$pdf->SetFont('dejavusanscondensed', '', 20); | 59 | 66 | $pdf->SetFont('dejavusanscondensed', '', 20); | |
$pdf->SetFont('', 'U'); | 60 | 67 | $pdf->SetFont('', 'U'); | |
$ssfLink = $pdf->AddLink(); | 61 | 68 | $ssfLink = $pdf->AddLink(); | |
$pdf->Write(10, "Jump to SSF for SHACK-10A", $ssfLink); | 62 | 69 | $pdf->Write(10, "Jump to SSF for SHACK-10A", $ssfLink); | |
$pdf->SetFont(''); | 63 | 70 | $pdf->SetFont(''); | |
$pdf->Ln(); | 64 | 71 | $pdf->Ln(); | |
$pdf->Write(10, "This is some text on the first page; "); | 65 | 72 | $pdf->Write(10, "This is some text on the first page; "); | |
$pdf->Ln(); | 66 | 73 | $pdf->Ln(); | |
$pdf->Write(10, "Привет! Этот немного текста."); | 67 | 74 | $pdf->Write(10, "Привет! Этот немного текста."); | |
68 | 75 | |||
// load up the Site Summary Figure to go on page #2 | 69 | 76 | // load up the Site Summary Figure to go on page #2 | |
$ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | 70 | 77 | $ssfPageCount = $pdf->setSourceFile(__DIR__ . '/site_summary_figure.pdf'); | |
//print "Page count of site summary figure form is $ssfPageCount\n"; | 71 | 78 | //print "Page count of site summary figure form is $ssfPageCount\n"; | |
72 | 79 | |||
// import the SSF page | 73 | 80 | // import the SSF page | |
$ssfTemplate= $pdf->importPage(1); | 74 | 81 | $ssfTemplate= $pdf->importPage(1); | |
//print "Page size of site summary figure PDF is: "; | 75 | 82 | //print "Page size of site summary figure PDF is: "; | |
//$ssfSize = $pdf->getTemplateSize($ssfTemplate); | 76 | 83 | //$ssfSize = $pdf->getTemplateSize($ssfTemplate); | |
//print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | 77 | 84 | //print "{$ssfSize['w']}mm x {$ssfSize['h']}mm\n"; | |
78 | 85 | |||
// add the SSF file to the 2nd page | 79 | 86 | // add the SSF file to the 2nd page | |
$pdf->AddPage(); | 80 | 87 | $pdf->AddPage(); | |
88 | // add a bookmark | |||
89 | // - text, indent level, Y position, target page number, style, color, | |||
90 | // X position, link ID | |||
91 | $pdf->Bookmark("Page 2", 0, 0, '', 'B'); | |||
92 | ||||
$pdf->SetLink($ssfLink); | 81 | 93 | $pdf->SetLink($ssfLink); |