Commit 84e050cc6680c38d65b4cf9b6a1c98c58d835520

Authored by Brian Manning
1 parent f75a06930f
Exists in master

table_demo: added bookmark to 3rd page (table demo) in demo PDF

Showing 1 changed file with 7 additions and 1 deletions Inline Diff

#!/usr/bin/env php 1 1 #!/usr/bin/env php
2 2
<?php 3 3 <?php
/** 4 4 /**
* FILENAME: 5 5 * FILENAME:
* pdflib_demo 6 6 * pdflib_demo
* 7 7 *
* DESCRIPTION: 8 8 * DESCRIPTION:
* Demonstration of the pdflib PHP Library for generating PDF files 9 9 * Demonstration of the pdflib PHP Library for generating PDF files
* 10 10 *
*/ 11 11 */
12 12
/** 13 13 /**
Links: 14 14 Links:
- https://www.pdflib.com/developer/technical-documentation/manuals/ 15 15 - https://www.pdflib.com/developer/technical-documentation/manuals/
- https://www.pdflib.com/pdflib-cookbook/browse-all-topics/ 16 16 - https://www.pdflib.com/pdflib-cookbook/browse-all-topics/
- https://www.pdflib.com/pdflib-cookbook/tables/starter-table/ 17 17 - https://www.pdflib.com/pdflib-cookbook/tables/starter-table/
- https://www.pdflib.com/pdflib-cookbook/tables/vertical-text-alignment/ 18 18 - https://www.pdflib.com/pdflib-cookbook/tables/vertical-text-alignment/
- https://www.pdflib.com/pdflib-cookbook/general-programming/starter-basic/php-general-progamming-issues/ 19 19 - https://www.pdflib.com/pdflib-cookbook/general-programming/starter-basic/php-general-progamming-issues/
20 20
*/ 21 21 */
22 22
// set a default timezone 23 23 // set a default timezone
date_default_timezone_set("America/Los_Angeles"); 24 24 date_default_timezone_set("America/Los_Angeles");
25 25
//require_once('tcpdf_include.php'); 26 26 //require_once('tcpdf_include.php');
$outfile = __DIR__ . '/pdflib_table_output.pdf'; 27 27 $outfile = __DIR__ . '/pdflib_table_output.pdf';
28 28
define("PAGE_WIDTH_LETTER", 612); 29 29 define("PAGE_WIDTH_LETTER", 612);
define("PAGE_HEIGHT_LETTER", 792); 30 30 define("PAGE_HEIGHT_LETTER", 792);
define("PAGE_WIDTH_A4", 595); 31 31 define("PAGE_WIDTH_A4", 595);
define("PAGE_HEIGHT_A4", 842); 32 32 define("PAGE_HEIGHT_A4", 842);
// table params 33 33 // table params
$tbl = 0; 34 34 $tbl = 0;
$rowmax = 50; 35 35 $rowmax = 50;
$colmax = 5; 36 36 $colmax = 5;
37 37
// page placement defaults 38 38 // page placement defaults
$letterPageTopYPortrait = 752; 39 39 $letterPageTopYPortrait = 752;
$letterPageTopYLandscape = 592; 40 40 $letterPageTopYLandscape = 592;
$letterPageRightPortrait = 592; 41 41 $letterPageRightPortrait = 592;
$letterPageRightLandscape = 752; 42 42 $letterPageRightLandscape = 752;
// lower left X, lower left Y, upper right X, upper right Y 43 43 // lower left X, lower left Y, upper right X, upper right Y
// A4 paper size 44 44 // A4 paper size
//$llx= 50; $lly=50; $urx=550; $ury=800; 45 45 //$llx= 50; $lly=50; $urx=550; $ury=800;
// Letter paper size 46 46 // Letter paper size
$llx= 50; $lly=50; $urx=550; $ury=$letterPageTopYPortrait; 47 47 $llx= 50; $lly=50; $urx=550; $ury=$letterPageTopYPortrait;
48 48
// wrap PDFlib usage in a try{} block 49 49 // wrap PDFlib usage in a try{} block
try { 50 50 try {
$pdf = new PDFlib(); 51 51 $pdf = new PDFlib();
52 52
// set up some PDFlib options 53 53 // set up some PDFlib options
$pdf->set_option("errorpolicy=return"); 54 54 $pdf->set_option("errorpolicy=return");
$pdf->set_option("stringformat=utf8"); 55 55 $pdf->set_option("stringformat=utf8");
// set up the license key; Linux x86_64 56 56 // set up the license key; Linux x86_64
// This will be skipped on Macs 57 57 // This will be skipped on Macs
if ( php_uname('s') === "Linux" ) 58 58 if ( php_uname('s') === "Linux" )
$pdf->set_option("license=L900202-010053-139026-P52782-GB5G52"); 59 59 $pdf->set_option("license=L900202-010053-139026-P52782-GB5G52");
60 60
// all paths in 'searchpath' need to be inside curly braces 61 61 // all paths in 'searchpath' need to be inside curly braces
// multiple curly-braced paths in $searchpath need to be separated with 62 62 // multiple curly-braced paths in $searchpath need to be separated with
// space characters 63 63 // space characters
$searchpath = '{/usr/share/fonts/gnu-free/} {' . __DIR__ . '/fonts}'; 64 64 $searchpath = '{/usr/share/fonts/gnu-free/} {' . __DIR__ . '/fonts}';
#print "Font search path: $searchpath\n"; 65 65 #print "Font search path: $searchpath\n";
$pdf->set_option("SearchPath={" . $searchpath . "}"); 66 66 $pdf->set_option("SearchPath={" . $searchpath . "}");
$pdf->set_option("enumeratefonts saveresources={filename=" 67 67 $pdf->set_option("enumeratefonts saveresources={filename="
. __DIR__ . "/fonts.upr}"); 68 68 . __DIR__ . "/fonts.upr}");
69 69
if ($pdf->begin_document($outfile, "") == 0) 70 70 if ($pdf->begin_document($outfile, "") == 0)
throw new Exception("Error: " . $pdf->get_errmsg()); 71 71 throw new Exception("Error: " . $pdf->get_errmsg());
72 72
// set up the document metadata info 73 73 // set up the document metadata info
$pdf->set_info('Creator', 'IODP Science Support Office'); 74 74 $pdf->set_info('Creator', 'IODP Science Support Office');
$pdf->set_info('Author', 'IODP Science Support Office'); 75 75 $pdf->set_info('Author', 'IODP Science Support Office');
$pdf->set_info('Title', 'Demo of TCPDF for generating IODP Proposals'); 76 76 $pdf->set_info('Title', 'Demo of TCPDF for generating IODP Proposals');
$pdf->set_info('Subject', 'IODP Proposals'); 77 77 $pdf->set_info('Subject', 'IODP Proposals');
$pdf->set_info('Keywords', 'IODP proposal ocean drilling core expedition'); 78 78 $pdf->set_info('Keywords', 'IODP proposal ocean drilling core expedition');
79 79
$textOpts = "fontname={FreeSans} embedding fontsize=20 " 80 80 $textOpts = "fontname={FreeSans} embedding fontsize=20 "
. "encoding=unicode "; 81 81 . "encoding=unicode ";
82 82
// START PAGE 1 83 83 // START PAGE 1
$pdf->begin_page_ext(0, 0, 'width=letter.width height=letter.height'); 84 84 $pdf->begin_page_ext(0, 0, 'width=letter.width height=letter.height');
85 85
// create bookmarks first thing 86 86 // create bookmarks first thing
$action = $pdf->create_action("GoTo", "destination={page=1}"); 87 87 $action = $pdf->create_action("GoTo", "destination={page=1}");
$pdf->create_bookmark("Page 1", " action={activate= " . $action . "}"); 88 88 $pdf->create_bookmark("Page 1", " action={activate= " . $action . "}");
89 89
// action 90 90 // action
$action = $pdf->create_action("GoTo", "destination={page=2}"); 91 91 $action = $pdf->create_action("GoTo", "destination={page=2}");
// bookmark 92 92 // bookmark
$pdf->create_bookmark("Page 2", " action={activate= " . $action . "}"); 93 93 $pdf->create_bookmark("Site Summary Figure",
94 " action={activate= " . $action . "}");
95
96 // action
97 $action = $pdf->create_action("GoTo", "destination={page=3}");
98 // bookmark
99 $pdf->create_bookmark("Table Demo", " action={activate= " . $action . "}");
94 100
// text/image 95 101 // text/image
$pdf->fit_textline("Jump to SSF for SHACK-10A", 20, 750, 96 102 $pdf->fit_textline("Jump to SSF for SHACK-10A", 20, 750,
$textOpts . " underline=true matchbox={name=to_second_page}"); 97 103 $textOpts . " underline=true matchbox={name=to_second_page}");
// annotation; reuse the "page 2" action above 98 104 // annotation; reuse the "page 2" action above
$optlist = "action={activate " . $action . "} linewidth=0 " . 99 105 $optlist = "action={activate " . $action . "} linewidth=0 " .
"usematchbox={to_second_page}"; 100 106 "usematchbox={to_second_page}";
$pdf->create_annotation(0, 0, 0, 0, "Link", $optlist); 101 107 $pdf->create_annotation(0, 0, 0, 0, "Link", $optlist);
102 108
// the rest of the text on page 1 103 109 // the rest of the text on page 1
$pdf->fit_textline("This is some text on the first page; ", 20, 720, 104 110 $pdf->fit_textline("This is some text on the first page; ", 20, 720,
$textOpts); 105 111 $textOpts);
$pdf->fit_textline("Привет! Этот немного текста.", 20, 690, $textOpts); 106 112 $pdf->fit_textline("Привет! Этот немного текста.", 20, 690, $textOpts);
107 113
// END PAGE 1 108 114 // END PAGE 1
$pdf->end_page_ext(''); 109 115 $pdf->end_page_ext('');
110 116
// START PAGE 2 111 117 // START PAGE 2
//$pdf->begin_page_ext(612, 792, ''); 112 118 //$pdf->begin_page_ext(612, 792, '');
$ssfPDF = $pdf->open_pdi_document(__DIR__ . "/site_summary_figure.pdf", ''); 113 119 $ssfPDF = $pdf->open_pdi_document(__DIR__ . "/site_summary_figure.pdf", '');
if ($ssfPDF == 0) 114 120 if ($ssfPDF == 0)
throw new Exception("Error: " . $p->get_errmsg()); 115 121 throw new Exception("Error: " . $p->get_errmsg());
116 122
$ssfPage = $pdf->open_pdi_page($ssfPDF, 1, ''); 117 123 $ssfPage = $pdf->open_pdi_page($ssfPDF, 1, '');
$ssfWidth = $pdf->pcos_get_number($ssfPDF, "pages[0]/width"); 118 124 $ssfWidth = $pdf->pcos_get_number($ssfPDF, "pages[0]/width");
$ssfHeight = $pdf->pcos_get_number($ssfPDF, "pages[0]/height"); 119 125 $ssfHeight = $pdf->pcos_get_number($ssfPDF, "pages[0]/height");
//print "Page width/height: $ssfWidth x $ssfHeight\n"; 120 126 //print "Page width/height: $ssfWidth x $ssfHeight\n";
121 127
$pdf->begin_page_ext($ssfWidth, $ssfHeight, ''); 122 128 $pdf->begin_page_ext($ssfWidth, $ssfHeight, '');
123 129
$pdf->fit_pdi_page($ssfPage, 0, 0, ''); 124 130 $pdf->fit_pdi_page($ssfPage, 0, 0, '');
$pdf->close_pdi_page($ssfPage); 125 131 $pdf->close_pdi_page($ssfPage);
$pdf->close_pdi_document($ssfPDF); 126 132 $pdf->close_pdi_document($ssfPDF);
127 133
// write some text on to the page 128 134 // write some text on to the page
// for landscape mode... 129 135 // for landscape mode...
//$pdf->fit_textline("Back to Top", 20, 570, 130 136 //$pdf->fit_textline("Back to Top", 20, 570,
//$linkOpts = linkAttribs(1, 750); 131 137 //$linkOpts = linkAttribs(1, 750);
$action = $pdf->create_action("GoTo", "destination={page=1}"); 132 138 $action = $pdf->create_action("GoTo", "destination={page=1}");
$pdf->fit_textline("Back to Top", 20, $ssfHeight - 30, 133 139 $pdf->fit_textline("Back to Top", 20, $ssfHeight - 30,
$textOpts . " underline=true matchbox={name=to_first_page}"); 134 140 $textOpts . " underline=true matchbox={name=to_first_page}");
135 141
// call create_annotation here 136 142 // call create_annotation here
$optlist = "action={activate " . $action . "} linewidth=0 " . 137 143 $optlist = "action={activate " . $action . "} linewidth=0 " .
"usematchbox={to_first_page}"; 138 144 "usematchbox={to_first_page}";
$pdf->create_annotation(0, 0, 0, 0, "Link", $optlist); 139 145 $pdf->create_annotation(0, 0, 0, 0, "Link", $optlist);
140 146
// END PAGE 2 141 147 // END PAGE 2
$pdf->end_page_ext(''); 142 148 $pdf->end_page_ext('');
143 149
// SET UP THE TABLE 144 150 // SET UP THE TABLE
$font = $pdf->load_font("FreeSans", "unicode", ""); 145 151 $font = $pdf->load_font("FreeSans", "unicode", "");
for ($row = 1; $row <= $rowmax; $row++) { 146 152 for ($row = 1; $row <= $rowmax; $row++) {
for ($col = 1; $col <= $colmax; $col++) { 147 153 for ($col = 1; $col <= $colmax; $col++) {
$num = "Col " . $col . "/Row " . $row; 148 154 $num = "Col " . $col . "/Row " . $row;
$optlist = "colwidth=20% fittextline={font=" . $font . " fontsize=10}"; 149 155 $optlist = "colwidth=20% fittextline={font=" . $font . " fontsize=10}";
$tbl = $pdf->add_table_cell($tbl, $col, $row, $num, $optlist); 150 156 $tbl = $pdf->add_table_cell($tbl, $col, $row, $num, $optlist);
if ($tbl == 0) { 151 157 if ($tbl == 0) {
die("Error: " . $pdf->get_errmsg()); 152 158 die("Error: " . $pdf->get_errmsg());
} 153 159 }
} 154 160 }
} 155 161 }
156 162
// DRAW THE TABLE 157 163 // DRAW THE TABLE
do { 158 164 do {
$pdf->begin_page_ext(0, 0, "width=letter.width height=letter.height"); 159 165 $pdf->begin_page_ext(0, 0, "width=letter.width height=letter.height");
160 166
/* Shade every other $row; draw lines for all table cells. 161 167 /* Shade every other $row; draw lines for all table cells.
* Add "showcells showborder" to visualize cell borders 162 168 * Add "showcells showborder" to visualize cell borders
*/ 163 169 */
$optlist = "header=1 rowheightdefault=auto " . 164 170 $optlist = "header=1 rowheightdefault=auto " .
"fill={{area=rowodd fillcolor={gray 0.9}}} " . 165 171 "fill={{area=rowodd fillcolor={gray 0.9}}} " .
"stroke={{line=other}} "; 166 172 "stroke={{line=other}} ";
167 173
/* Place the table instance */ 168 174 /* Place the table instance */
$result = $pdf->fit_table($tbl, $llx, $lly, $urx, $ury, $optlist); 169 175 $result = $pdf->fit_table($tbl, $llx, $lly, $urx, $ury, $optlist);
if ($result == "_error") { 170 176 if ($result == "_error") {
die("Couldn't place table: " . $p->get_errmsg()); 171 177 die("Couldn't place table: " . $p->get_errmsg());