barcodes
2 years ago
config
1 year ago
data
5 years ago
images
2 years ago
lang
5 years ago
example_001.php
2 years ago
example_002.php
2 years ago
example_003.php
2 years ago
example_004.php
2 years ago
example_005.php
2 years ago
example_006.php
2 years ago
example_007.php
2 years ago
example_008.php
2 years ago
example_009.php
2 years ago
example_010.php
2 years ago
example_011.php
2 years ago
example_012.pdf
5 years ago
example_012.php
2 years ago
example_013.php
2 years ago
example_014.php
2 years ago
example_015.php
2 years ago
example_016.php
2 years ago
example_017.php
2 years ago
example_018.php
2 years ago
example_019.php
2 years ago
example_020.php
2 years ago
example_021.php
2 years ago
example_022.php
2 years ago
example_023.php
2 years ago
example_024.php
2 years ago
example_025.php
2 years ago
example_026.php
2 years ago
example_027.php
2 years ago
example_028.php
2 years ago
example_029.php
2 years ago
example_030.php
2 years ago
example_031.php
2 years ago
example_032.php
2 years ago
example_033.php
2 years ago
example_034.php
2 years ago
example_035.php
2 years ago
example_036.php
2 years ago
example_037.php
2 years ago
example_038.php
2 years ago
example_039.php
2 years ago
example_040.php
2 years ago
example_041.php
2 years ago
example_042.php
2 years ago
example_043.php
2 years ago
example_044.php
2 years ago
example_045.php
2 years ago
example_046.php
2 years ago
example_047.php
2 years ago
example_048.php
2 years ago
example_049.php
1 year ago
example_050.php
2 years ago
example_051.php
2 years ago
example_052.php
2 years ago
example_053.php
2 years ago
example_054.php
2 years ago
example_055.php
2 years ago
example_056.php
2 years ago
example_057.php
2 years ago
example_058.php
2 years ago
example_059.php
2 years ago
example_060.php
2 years ago
example_061.php
2 years ago
example_062.php
2 years ago
example_063.php
2 years ago
example_064.php
2 years ago
example_065.php
2 years ago
example_066.php
1 year ago
example_067.php
2 years ago
index.php
2 years ago
tcpdf_include.php
2 years ago
example_059.php
194 lines
| 1 | <?php |
| 2 | //============================================================+ |
| 3 | // File name : example_059.php |
| 4 | // Begin : 2010-05-06 |
| 5 | // Last Update : 2013-05-14 |
| 6 | // |
| 7 | // Description : Example 059 for TCPDF class |
| 8 | // Table Of Content using HTML templates. |
| 9 | // |
| 10 | // Author: Nicola Asuni |
| 11 | // |
| 12 | // (c) Copyright: |
| 13 | // Nicola Asuni |
| 14 | // Tecnick.com LTD |
| 15 | // www.tecnick.com |
| 16 | // info@tecnick.com |
| 17 | //============================================================+ |
| 18 | |
| 19 | /** |
| 20 | * Creates an example PDF TEST document using TCPDF |
| 21 | * @package com.tecnick.tcpdf |
| 22 | * @abstract TCPDF - Example: Table Of Content using HTML templates. |
| 23 | * @author Nicola Asuni |
| 24 | * @since 2010-05-06 |
| 25 | * @group toc |
| 26 | * @group html |
| 27 | * @group pdf |
| 28 | */ |
| 29 | |
| 30 | // Include the main TCPDF library (search for installation path). |
| 31 | require_once('tcpdf_include.php'); |
| 32 | |
| 33 | /** |
| 34 | * TCPDF class extension with custom header and footer for TOC page |
| 35 | */ |
| 36 | class TOC_TCPDF extends TCPDF { |
| 37 | |
| 38 | /** |
| 39 | * Overwrite Header() method. |
| 40 | * @public |
| 41 | */ |
| 42 | public function Header() { |
| 43 | if ($this->tocpage) { |
| 44 | // *** replace the following parent::Header() with your code for TOC page |
| 45 | parent::Header(); |
| 46 | } else { |
| 47 | // *** replace the following parent::Header() with your code for normal pages |
| 48 | parent::Header(); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Overwrite Footer() method. |
| 54 | * @public |
| 55 | */ |
| 56 | public function Footer() { |
| 57 | if ($this->tocpage) { |
| 58 | // *** replace the following parent::Footer() with your code for TOC page |
| 59 | parent::Footer(); |
| 60 | } else { |
| 61 | // *** replace the following parent::Footer() with your code for normal pages |
| 62 | parent::Footer(); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | } // end of class |
| 67 | |
| 68 | // create new PDF document |
| 69 | $pdf = new TOC_TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); |
| 70 | |
| 71 | // set document information |
| 72 | $pdf->setCreator(PDF_CREATOR); |
| 73 | $pdf->setAuthor('Nicola Asuni'); |
| 74 | $pdf->setTitle('TCPDF Example 059'); |
| 75 | $pdf->setSubject('TCPDF Tutorial'); |
| 76 | $pdf->setKeywords('TCPDF, PDF, example, test, guide'); |
| 77 | |
| 78 | // set default header data |
| 79 | $pdf->setHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 059', PDF_HEADER_STRING); |
| 80 | |
| 81 | // set header and footer fonts |
| 82 | $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN)); |
| 83 | $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA)); |
| 84 | |
| 85 | // set default monospaced font |
| 86 | $pdf->setDefaultMonospacedFont(PDF_FONT_MONOSPACED); |
| 87 | |
| 88 | // set margins |
| 89 | $pdf->setMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT); |
| 90 | $pdf->setHeaderMargin(PDF_MARGIN_HEADER); |
| 91 | $pdf->setFooterMargin(PDF_MARGIN_FOOTER); |
| 92 | |
| 93 | // set auto page breaks |
| 94 | $pdf->setAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM); |
| 95 | |
| 96 | // set image scale factor |
| 97 | $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); |
| 98 | |
| 99 | // set some language-dependent strings (optional) |
| 100 | if (@file_exists(dirname(__FILE__).'/lang/eng.php')) { |
| 101 | require_once(dirname(__FILE__).'/lang/eng.php'); |
| 102 | $pdf->setLanguageArray($l); |
| 103 | } |
| 104 | |
| 105 | // set font |
| 106 | $pdf->setFont('helvetica', '', 10); |
| 107 | |
| 108 | // --------------------------------------------------------- |
| 109 | |
| 110 | // create some content ... |
| 111 | |
| 112 | // add a page |
| 113 | $pdf->AddPage(); |
| 114 | |
| 115 | // set a bookmark for the current position |
| 116 | $pdf->Bookmark('Chapter 1', 0, 0, '', 'B', array(0,64,128)); |
| 117 | |
| 118 | // print a line using Cell() |
| 119 | $pdf->Cell(0, 10, 'Chapter 1', 0, 1, 'L'); |
| 120 | |
| 121 | $pdf->AddPage(); |
| 122 | $pdf->Bookmark('Paragraph 1.1', 1, 0, '', '', array(128,0,0)); |
| 123 | $pdf->Cell(0, 10, 'Paragraph 1.1', 0, 1, 'L'); |
| 124 | |
| 125 | $pdf->AddPage(); |
| 126 | $pdf->Bookmark('Paragraph 1.2', 1, 0, '', '', array(128,0,0)); |
| 127 | $pdf->Cell(0, 10, 'Paragraph 1.2', 0, 1, 'L'); |
| 128 | |
| 129 | $pdf->AddPage(); |
| 130 | $pdf->Bookmark('Sub-Paragraph 1.2.1', 2, 0, '', 'I', array(0,128,0)); |
| 131 | $pdf->Cell(0, 10, 'Sub-Paragraph 1.2.1', 0, 1, 'L'); |
| 132 | |
| 133 | $pdf->AddPage(); |
| 134 | $pdf->Bookmark('Paragraph 1.3', 1, 0, '', '', array(128,0,0)); |
| 135 | $pdf->Cell(0, 10, 'Paragraph 1.3', 0, 1, 'L'); |
| 136 | |
| 137 | // add some pages and bookmarks |
| 138 | for ($i = 2; $i < 12; $i++) { |
| 139 | $pdf->AddPage(); |
| 140 | $pdf->Bookmark('Chapter '.$i, 0, 0, '', 'B', array(0,64,128)); |
| 141 | $pdf->Cell(0, 10, 'Chapter '.$i, 0, 1, 'L'); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
| 146 | |
| 147 | |
| 148 | // add a new page for TOC |
| 149 | $pdf->addTOCPage(); |
| 150 | |
| 151 | // write the TOC title and/or other elements on the TOC page |
| 152 | $pdf->setFont('times', 'B', 16); |
| 153 | $pdf->MultiCell(0, 0, 'Table Of Content', 0, 'C', 0, 1, '', '', true, 0); |
| 154 | $pdf->Ln(); |
| 155 | $pdf->setFont('helvetica', '', 10); |
| 156 | |
| 157 | // define styles for various bookmark levels |
| 158 | $bookmark_templates = array(); |
| 159 | |
| 160 | /* |
| 161 | * The key of the $bookmark_templates array represent the bookmark level (from 0 to n). |
| 162 | * The following templates will be replaced with proper content: |
| 163 | * #TOC_DESCRIPTION# this will be replaced with the bookmark description; |
| 164 | * #TOC_PAGE_NUMBER# this will be replaced with page number. |
| 165 | * |
| 166 | * NOTES: |
| 167 | * If you want to align the page number on the right you have to use a monospaced font like courier, otherwise you can left align using any font type. |
| 168 | * The following is just an example, you can get various styles by combining various HTML elements. |
| 169 | */ |
| 170 | |
| 171 | // A monospaced font for the page number is mandatory to get the right alignment |
| 172 | $bookmark_templates[0] = '<table border="0" cellpadding="0" cellspacing="0" style="background-color:#EEFAFF"><tr><td width="155mm"><span style="font-family:times;font-weight:bold;font-size:12pt;color:black;">#TOC_DESCRIPTION#</span></td><td width="25mm"><span style="font-family:courier;font-weight:bold;font-size:12pt;color:black;" align="right">#TOC_PAGE_NUMBER#</span></td></tr></table>'; |
| 173 | $bookmark_templates[1] = '<table border="0" cellpadding="0" cellspacing="0"><tr><td width="5mm"> </td><td width="150mm"><span style="font-family:times;font-size:11pt;color:green;">#TOC_DESCRIPTION#</span></td><td width="25mm"><span style="font-family:courier;font-weight:bold;font-size:11pt;color:green;" align="right">#TOC_PAGE_NUMBER#</span></td></tr></table>'; |
| 174 | $bookmark_templates[2] = '<table border="0" cellpadding="0" cellspacing="0"><tr><td width="10mm"> </td><td width="145mm"><span style="font-family:times;font-size:10pt;color:#666666;"><i>#TOC_DESCRIPTION#</i></span></td><td width="25mm"><span style="font-family:courier;font-weight:bold;font-size:10pt;color:#666666;" align="right">#TOC_PAGE_NUMBER#</span></td></tr></table>'; |
| 175 | // add other bookmark level templates here ... |
| 176 | |
| 177 | // add table of content at page 1 |
| 178 | // (check the example n. 45 for a text-only TOC |
| 179 | $pdf->addHTMLTOC(1, 'INDEX', $bookmark_templates, true, 'B', array(128,0,0)); |
| 180 | |
| 181 | // end of TOC page |
| 182 | $pdf->endTOCPage(); |
| 183 | |
| 184 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |
| 185 | |
| 186 | // --------------------------------------------------------- |
| 187 | |
| 188 | //Close and output PDF document |
| 189 | $pdf->Output('example_059.pdf', 'D'); |
| 190 | |
| 191 | //============================================================+ |
| 192 | // END OF FILE |
| 193 | //============================================================+ |
| 194 |