barcodes
4 years ago
config
5 years ago
data
5 years ago
images
5 years ago
lang
5 years ago
example_001.php
5 years ago
example_002.php
5 years ago
example_003.php
5 years ago
example_004.php
5 years ago
example_005.php
5 years ago
example_006.php
5 years ago
example_007.php
5 years ago
example_008.php
5 years ago
example_009.php
5 years ago
example_010.php
4 years ago
example_011.php
5 years ago
example_012.pdf
5 years ago
example_012.php
5 years ago
example_013.php
5 years ago
example_014.php
5 years ago
example_015.php
5 years ago
example_016.php
5 years ago
example_017.php
5 years ago
example_018.php
5 years ago
example_019.php
5 years ago
example_020.php
5 years ago
example_021.php
5 years ago
example_022.php
5 years ago
example_023.php
5 years ago
example_024.php
5 years ago
example_025.php
5 years ago
example_026.php
5 years ago
example_027.php
5 years ago
example_028.php
5 years ago
example_029.php
5 years ago
example_030.php
5 years ago
example_031.php
5 years ago
example_032.php
5 years ago
example_033.php
5 years ago
example_034.php
5 years ago
example_035.php
5 years ago
example_036.php
5 years ago
example_037.php
5 years ago
example_038.php
5 years ago
example_039.php
5 years ago
example_040.php
5 years ago
example_041.php
5 years ago
example_042.php
5 years ago
example_043.php
5 years ago
example_044.php
5 years ago
example_045.php
5 years ago
example_046.php
5 years ago
example_047.php
5 years ago
example_048.php
5 years ago
example_049.php
5 years ago
example_050.php
5 years ago
example_051.php
5 years ago
example_052.php
5 years ago
example_053.php
5 years ago
example_054.php
5 years ago
example_055.php
5 years ago
example_056.php
5 years ago
example_057.php
5 years ago
example_058.php
5 years ago
example_059.php
5 years ago
example_060.php
5 years ago
example_061.php
5 years ago
example_062.php
5 years ago
example_063.php
5 years ago
example_064.php
5 years ago
example_065.php
5 years ago
example_066.php
4 years ago
index.php
5 years ago
tcpdf_include.php
5 years ago
example_020.php
147 lines
| 1 | <?php |
| 2 | //============================================================+ |
| 3 | // File name : example_020.php |
| 4 | // Begin : 2008-03-04 |
| 5 | // Last Update : 2013-05-14 |
| 6 | // |
| 7 | // Description : Example 020 for TCPDF class |
| 8 | // Two columns composed by MultiCell of different |
| 9 | // heights |
| 10 | // |
| 11 | // Author: Nicola Asuni |
| 12 | // |
| 13 | // (c) Copyright: |
| 14 | // Nicola Asuni |
| 15 | // Tecnick.com LTD |
| 16 | // www.tecnick.com |
| 17 | // info@tecnick.com |
| 18 | //============================================================+ |
| 19 | |
| 20 | /** |
| 21 | * Creates an example PDF TEST document using TCPDF |
| 22 | * @package com.tecnick.tcpdf |
| 23 | * @abstract TCPDF - Example: Two columns composed by MultiCell of different heights |
| 24 | * @author Nicola Asuni |
| 25 | * @since 2008-03-04 |
| 26 | */ |
| 27 | |
| 28 | // Include the main TCPDF library (search for installation path). |
| 29 | require_once('tcpdf_include.php'); |
| 30 | |
| 31 | // extend TCPF with custom functions |
| 32 | class MYPDF extends TCPDF { |
| 33 | |
| 34 | public function MultiRow($left, $right) { |
| 35 | // MultiCell($w, $h, $txt, $border=0, $align='J', $fill=0, $ln=1, $x='', $y='', $reseth=true, $stretch=0) |
| 36 | |
| 37 | $page_start = $this->getPage(); |
| 38 | $y_start = $this->GetY(); |
| 39 | |
| 40 | // write the left cell |
| 41 | $this->MultiCell(40, 0, $left, 1, 'R', 1, 2, '', '', true, 0); |
| 42 | |
| 43 | $page_end_1 = $this->getPage(); |
| 44 | $y_end_1 = $this->GetY(); |
| 45 | |
| 46 | $this->setPage($page_start); |
| 47 | |
| 48 | // write the right cell |
| 49 | $this->MultiCell(0, 0, $right, 1, 'J', 0, 1, $this->GetX() ,$y_start, true, 0); |
| 50 | |
| 51 | $page_end_2 = $this->getPage(); |
| 52 | $y_end_2 = $this->GetY(); |
| 53 | |
| 54 | // set the new row position by case |
| 55 | if (max($page_end_1,$page_end_2) == $page_start) { |
| 56 | $ynew = max($y_end_1, $y_end_2); |
| 57 | } elseif ($page_end_1 == $page_end_2) { |
| 58 | $ynew = max($y_end_1, $y_end_2); |
| 59 | } elseif ($page_end_1 > $page_end_2) { |
| 60 | $ynew = $y_end_1; |
| 61 | } else { |
| 62 | $ynew = $y_end_2; |
| 63 | } |
| 64 | |
| 65 | $this->setPage(max($page_end_1,$page_end_2)); |
| 66 | $this->SetXY($this->GetX(),$ynew); |
| 67 | } |
| 68 | |
| 69 | } |
| 70 | |
| 71 | // create new PDF document |
| 72 | $pdf = new MYPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); |
| 73 | |
| 74 | // set document information |
| 75 | $pdf->SetCreator(PDF_CREATOR); |
| 76 | $pdf->SetAuthor('Nicola Asuni'); |
| 77 | $pdf->SetTitle('TCPDF Example 020'); |
| 78 | $pdf->SetSubject('TCPDF Tutorial'); |
| 79 | $pdf->SetKeywords('TCPDF, PDF, example, test, guide'); |
| 80 | |
| 81 | // set default header data |
| 82 | $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 020', PDF_HEADER_STRING); |
| 83 | |
| 84 | // set header and footer fonts |
| 85 | $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN)); |
| 86 | $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA)); |
| 87 | |
| 88 | // set default monospaced font |
| 89 | $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED); |
| 90 | |
| 91 | // set margins |
| 92 | $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT); |
| 93 | $pdf->SetHeaderMargin(PDF_MARGIN_HEADER); |
| 94 | $pdf->SetFooterMargin(PDF_MARGIN_FOOTER); |
| 95 | |
| 96 | // set auto page breaks |
| 97 | $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM); |
| 98 | |
| 99 | // set image scale factor |
| 100 | $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO); |
| 101 | |
| 102 | // set some language-dependent strings (optional) |
| 103 | if (@file_exists(dirname(__FILE__).'/lang/eng.php')) { |
| 104 | require_once(dirname(__FILE__).'/lang/eng.php'); |
| 105 | $pdf->setLanguageArray($l); |
| 106 | } |
| 107 | |
| 108 | // --------------------------------------------------------- |
| 109 | |
| 110 | // set font |
| 111 | $pdf->SetFont('helvetica', '', 20); |
| 112 | // add a page |
| 113 | $pdf->AddPage(); |
| 114 | |
| 115 | $pdf->Write(0, 'Example of text layout using Multicell()', '', 0, 'L', true, 0, false, false, 0); |
| 116 | |
| 117 | $pdf->Ln(5); |
| 118 | |
| 119 | $pdf->SetFont('times', '', 9); |
| 120 | |
| 121 | //$pdf->SetCellPadding(0); |
| 122 | //$pdf->SetLineWidth(2); |
| 123 | |
| 124 | // set color for background |
| 125 | $pdf->SetFillColor(255, 255, 200); |
| 126 | |
| 127 | $text = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed imperdiet lectus. Phasellus quis velit velit, non condimentum quam. Sed neque urna, ultrices ac volutpat vel, laoreet vitae augue. Sed vel velit erat. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eget velit nulla, eu sagittis elit. Nunc ac arcu est, in lobortis tellus. Praesent condimentum rhoncus sodales. In hac habitasse platea dictumst. Proin porta eros pharetra enim tincidunt dignissim nec vel dolor. Cras sapien elit, ornare ac dignissim eu, ultricies ac eros. Maecenas augue magna, ultrices a congue in, mollis eu nulla. Nunc venenatis massa at est eleifend faucibus. Vivamus sed risus lectus, nec interdum nunc. |
| 128 | |
| 129 | Fusce et felis vitae diam lobortis sollicitudin. Aenean tincidunt accumsan nisi, id vehicula quam laoreet elementum. Phasellus egestas interdum erat, et viverra ipsum ultricies ac. Praesent sagittis augue at augue volutpat eleifend. Cras nec orci neque. Mauris bibendum posuere blandit. Donec feugiat mollis dui sit amet pellentesque. Sed a enim justo. Donec tincidunt, nisl eget elementum aliquam, odio ipsum ultrices quam, eu porttitor ligula urna at lorem. Donec varius, eros et convallis laoreet, ligula tellus consequat felis, ut ornare metus tellus sodales velit. Duis sed diam ante. Ut rutrum malesuada massa, vitae consectetur ipsum rhoncus sed. Suspendisse potenti. Pellentesque a congue massa.'; |
| 130 | |
| 131 | // print some rows just as example |
| 132 | for ($i = 0; $i < 10; ++$i) { |
| 133 | $pdf->MultiRow('Row '.($i+1), $text."\n"); |
| 134 | } |
| 135 | |
| 136 | // reset pointer to the last page |
| 137 | $pdf->lastPage(); |
| 138 | |
| 139 | // --------------------------------------------------------- |
| 140 | |
| 141 | //Close and output PDF document |
| 142 | $pdf->Output('example_020.pdf', 'I'); |
| 143 | |
| 144 | //============================================================+ |
| 145 | // END OF FILE |
| 146 | //============================================================+ |
| 147 |