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_011.php
142 lines
| 1 | <?php |
| 2 | //============================================================+ |
| 3 | // File name : example_011.php |
| 4 | // Begin : 2008-03-04 |
| 5 | // Last Update : 2013-05-14 |
| 6 | // |
| 7 | // Description : Example 011 for TCPDF class |
| 8 | // Colored Table (very simple table) |
| 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: Colored Table |
| 23 | * @author Nicola Asuni |
| 24 | * @since 2008-03-04 |
| 25 | * @group table |
| 26 | * @group color |
| 27 | * @group pdf |
| 28 | */ |
| 29 | |
| 30 | // Include the main TCPDF library (search for installation path). |
| 31 | require_once('tcpdf_include.php'); |
| 32 | |
| 33 | // extend TCPF with custom functions |
| 34 | class MYPDF extends TCPDF { |
| 35 | |
| 36 | // Load table data from file |
| 37 | public function LoadData($file) { |
| 38 | // Read file lines |
| 39 | $lines = file($file); |
| 40 | $data = array(); |
| 41 | foreach($lines as $line) { |
| 42 | $data[] = explode(';', chop($line)); |
| 43 | } |
| 44 | return $data; |
| 45 | } |
| 46 | |
| 47 | // Colored table |
| 48 | public function ColoredTable($header,$data) { |
| 49 | // Colors, line width and bold font |
| 50 | $this->setFillColor(255, 0, 0); |
| 51 | $this->setTextColor(255); |
| 52 | $this->setDrawColor(128, 0, 0); |
| 53 | $this->setLineWidth(0.3); |
| 54 | $this->setFont('', 'B'); |
| 55 | // Header |
| 56 | $w = array(40, 35, 40, 45); |
| 57 | $num_headers = count($header); |
| 58 | for($i = 0; $i < $num_headers; ++$i) { |
| 59 | $this->Cell($w[$i], 7, $header[$i], 1, 0, 'C', 1); |
| 60 | } |
| 61 | $this->Ln(); |
| 62 | // Color and font restoration |
| 63 | $this->setFillColor(224, 235, 255); |
| 64 | $this->setTextColor(0); |
| 65 | $this->setFont(''); |
| 66 | // Data |
| 67 | $fill = 0; |
| 68 | foreach($data as $row) { |
| 69 | $this->Cell($w[0], 6, $row[0], 'LR', 0, 'L', $fill); |
| 70 | $this->Cell($w[1], 6, $row[1], 'LR', 0, 'L', $fill); |
| 71 | $this->Cell($w[2], 6, number_format($row[2]), 'LR', 0, 'R', $fill); |
| 72 | $this->Cell($w[3], 6, number_format($row[3]), 'LR', 0, 'R', $fill); |
| 73 | $this->Ln(); |
| 74 | $fill=!$fill; |
| 75 | } |
| 76 | $this->Cell(array_sum($w), 0, '', 'T'); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | // create new PDF document |
| 81 | $pdf = new MYPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); |
| 82 | |
| 83 | // set document information |
| 84 | $pdf->setCreator(PDF_CREATOR); |
| 85 | $pdf->setAuthor('Nicola Asuni'); |
| 86 | $pdf->setTitle('TCPDF Example 011'); |
| 87 | $pdf->setSubject('TCPDF Tutorial'); |
| 88 | $pdf->setKeywords('TCPDF, PDF, example, test, guide'); |
| 89 | |
| 90 | // set default header data |
| 91 | $pdf->setHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 011', PDF_HEADER_STRING); |
| 92 | |
| 93 | // set header and footer fonts |
| 94 | $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN)); |
| 95 | $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA)); |
| 96 | |
| 97 | // set default monospaced font |
| 98 | $pdf->setDefaultMonospacedFont(PDF_FONT_MONOSPACED); |
| 99 | |
| 100 | // set margins |
| 101 | $pdf->setMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT); |
| 102 | $pdf->setHeaderMargin(PDF_MARGIN_HEADER); |
| 103 | $pdf->setFooterMargin(PDF_MARGIN_FOOTER); |
| 104 | |
| 105 | // set auto page breaks |
| 106 | $pdf->setAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM); |
| 107 | |
| 108 | // set image scale factor |
| 109 | $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); |
| 110 | |
| 111 | // set some language-dependent strings (optional) |
| 112 | if (@file_exists(dirname(__FILE__).'/lang/eng.php')) { |
| 113 | require_once(dirname(__FILE__).'/lang/eng.php'); |
| 114 | $pdf->setLanguageArray($l); |
| 115 | } |
| 116 | |
| 117 | // --------------------------------------------------------- |
| 118 | |
| 119 | // set font |
| 120 | $pdf->setFont('helvetica', '', 12); |
| 121 | |
| 122 | // add a page |
| 123 | $pdf->AddPage(); |
| 124 | |
| 125 | // column titles |
| 126 | $header = array('Country', 'Capital', 'Area (sq km)', 'Pop. (thousands)'); |
| 127 | |
| 128 | // data loading |
| 129 | $data = $pdf->LoadData('data/table_data_demo.txt'); |
| 130 | |
| 131 | // print colored table |
| 132 | $pdf->ColoredTable($header, $data); |
| 133 | |
| 134 | // --------------------------------------------------------- |
| 135 | |
| 136 | // close and output PDF document |
| 137 | $pdf->Output('example_011.pdf', 'I'); |
| 138 | |
| 139 | //============================================================+ |
| 140 | // END OF FILE |
| 141 | //============================================================+ |
| 142 |