ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
example_020.php
Go to the documentation of this file.
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 
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
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
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 //============================================================+
const PDF_MARGIN_BOTTOM
Bottom margin.
const PDF_MARGIN_LEFT
Left margin.
const PDF_MARGIN_HEADER
Header margin.
const PDF_HEADER_STRING
Header description string.
const PDF_FONT_SIZE_MAIN
Default main font size.
SetXY($x, $y, $rtloff=false)
Defines the abscissa and ordinate of the current position.
Definition: tcpdf.php:7507
const PDF_FONT_SIZE_DATA
Default data font size.
const PDF_FONT_NAME_MAIN
Default main font name.
GetX()
Returns the relative X value of current position.
Definition: tcpdf.php:7401
PHP class for generating PDF documents without requiring external extensions.
Definition: tcpdf.php:134
const PDF_HEADER_LOGO_WIDTH
Header logo image width in user units.
const PDF_HEADER_LOGO
Deafult image logo used be the default Header() method.
const PDF_UNIT
Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
const PDF_IMAGE_SCALE_RATIO
Ratio used to adjust the conversion of pixels to user units.
getPage()
Get current document page number.
Definition: tcpdf.php:3053
const PDF_PAGE_ORIENTATION
Page orientation (P=portrait, L=landscape).
setPage($pnum, $resetmargins=false)
Move pointer at the specified document page and update page dimensions.
Definition: tcpdf.php:2995
const PDF_MARGIN_RIGHT
Right margin.
MultiRow($left, $right)
Definition: example_020.php:34
$l
Language templates.
Definition: tcpdf.php:613
$pdf
Definition: example_020.php:72
GetY()
Returns the ordinate of the current position.
Definition: tcpdf.php:7428
const PDF_HEADER_TITLE
Header title.
const PDF_FONT_NAME_DATA
Default data font name.
const PDF_CREATOR
Document creator.
$i
Definition: disco.tpl.php:19
$text
const PDF_PAGE_FORMAT
Page format.
const PDF_FONT_MONOSPACED
Default monospaced font name.
MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0, $valign='T', $fitcell=false)
This method allows printing text with line breaks.
Definition: tcpdf.php:5757
const PDF_MARGIN_TOP
Top margin.
const PDF_MARGIN_FOOTER
Footer margin.