123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?php
- require_once('tcpdf_include.php');
- class TOC_TCPDF extends TCPDF {
-
- public function Header() {
- if ($this->tocpage) {
-
- parent::Header();
- } else {
-
- parent::Header();
- }
- }
-
- public function Footer() {
- if ($this->tocpage) {
-
- parent::Footer();
- } else {
-
- parent::Footer();
- }
- }
- }
- $pdf = new TOC_TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- $pdf->SetCreator(PDF_CREATOR);
- $pdf->SetAuthor('Nicola Asuni');
- $pdf->SetTitle('TCPDF Example 059');
- $pdf->SetSubject('TCPDF Tutorial');
- $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
- $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 059', PDF_HEADER_STRING);
- $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
- $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
- $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
- $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
- $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
- $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
- $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
- $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
- if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
- require_once(dirname(__FILE__).'/lang/eng.php');
- $pdf->setLanguageArray($l);
- }
- $pdf->SetFont('helvetica', '', 10);
- $pdf->AddPage();
- $pdf->Bookmark('Chapter 1', 0, 0, '', 'B', array(0,64,128));
- $pdf->Cell(0, 10, 'Chapter 1', 0, 1, 'L');
- $pdf->AddPage();
- $pdf->Bookmark('Paragraph 1.1', 1, 0, '', '', array(128,0,0));
- $pdf->Cell(0, 10, 'Paragraph 1.1', 0, 1, 'L');
- $pdf->AddPage();
- $pdf->Bookmark('Paragraph 1.2', 1, 0, '', '', array(128,0,0));
- $pdf->Cell(0, 10, 'Paragraph 1.2', 0, 1, 'L');
- $pdf->AddPage();
- $pdf->Bookmark('Sub-Paragraph 1.2.1', 2, 0, '', 'I', array(0,128,0));
- $pdf->Cell(0, 10, 'Sub-Paragraph 1.2.1', 0, 1, 'L');
- $pdf->AddPage();
- $pdf->Bookmark('Paragraph 1.3', 1, 0, '', '', array(128,0,0));
- $pdf->Cell(0, 10, 'Paragraph 1.3', 0, 1, 'L');
- for ($i = 2; $i < 12; $i++) {
- $pdf->AddPage();
- $pdf->Bookmark('Chapter '.$i, 0, 0, '', 'B', array(0,64,128));
- $pdf->Cell(0, 10, 'Chapter '.$i, 0, 1, 'L');
- }
- $pdf->addTOCPage();
- $pdf->SetFont('times', 'B', 16);
- $pdf->MultiCell(0, 0, 'Table Of Content', 0, 'C', 0, 1, '', '', true, 0);
- $pdf->Ln();
- $pdf->SetFont('helvetica', '', 10);
- $bookmark_templates = array();
- $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>';
- $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>';
- $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>';
- $pdf->addHTMLTOC(1, 'INDEX', $bookmark_templates, true, 'B', array(128,0,0));
- $pdf->endTOCPage();
- $pdf->Output('example_059.pdf', 'D');
|