1<?php
2//============================================================+
3// File name   : example_057.php
4// Begin       : 2010-04-03
5// Last Update : 2013-05-14
6//
7// Description : Example 057 for TCPDF class
8//               Cell vertical alignments
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: Cell vertical alignments
23 * @author Nicola Asuni
24 * @since 2008-03-04
25 */
26
27// Include the main TCPDF library (search for installation path).
28require_once('tcpdf_include.php');
29
30// create new PDF document
31$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
32
33// set document information
34$pdf->SetCreator(PDF_CREATOR);
35$pdf->SetAuthor('Nicola Asuni');
36$pdf->SetTitle('TCPDF Example 057');
37$pdf->SetSubject('TCPDF Tutorial');
38$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
39
40// set default header data
41$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 057', PDF_HEADER_STRING);
42
43// set header and footer fonts
44$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
45$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
46
47// set default monospaced font
48$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
49
50// set margins
51$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
52$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
53$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
54
55// set auto page breaks
56$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
57
58// set image scale factor
59$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
60
61// set some language-dependent strings (optional)
62if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
63	require_once(dirname(__FILE__).'/lang/eng.php');
64	$pdf->setLanguageArray($l);
65}
66
67// ---------------------------------------------------------
68
69// set font
70$pdf->SetFont('helvetica', 'B', 20);
71
72// add a page
73$pdf->AddPage();
74
75$pdf->Write(0, 'Example of alignment options for Cell()', '', 0, 'L', true, 0, false, false, 0);
76
77$pdf->SetFont('helvetica', '', 11);
78
79// set border width
80$pdf->SetLineWidth(0.7);
81
82// set color for cell border
83$pdf->SetDrawColor(0,128,255);
84
85$pdf->setCellHeightRatio(3);
86
87$pdf->SetXY(15, 60);
88
89// text on center
90$pdf->Cell(30, 0, 'Top-Center', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'C');
91$pdf->Cell(30, 0, 'Center-Center', 1, $ln=0, 'C', 0, '', 0, false, 'C', 'C');
92$pdf->Cell(30, 0, 'Bottom-Center', 1, $ln=0, 'C', 0, '', 0, false, 'B', 'C');
93$pdf->Cell(30, 0, 'Ascent-Center', 1, $ln=0, 'C', 0, '', 0, false, 'A', 'C');
94$pdf->Cell(30, 0, 'Baseline-Center', 1, $ln=0, 'C', 0, '', 0, false, 'L', 'C');
95$pdf->Cell(30, 0, 'Descent-Center', 1, $ln=0, 'C', 0, '', 0, false, 'D', 'C');
96
97
98$pdf->SetXY(15, 90);
99
100// text on top
101$pdf->Cell(30, 0, 'Top-Top', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'T');
102$pdf->Cell(30, 0, 'Center-Top', 1, $ln=0, 'C', 0, '', 0, false, 'C', 'T');
103$pdf->Cell(30, 0, 'Bottom-Top', 1, $ln=0, 'C', 0, '', 0, false, 'B', 'T');
104$pdf->Cell(30, 0, 'Ascent-Top', 1, $ln=0, 'C', 0, '', 0, false, 'A', 'T');
105$pdf->Cell(30, 0, 'Baseline-Top', 1, $ln=0, 'C', 0, '', 0, false, 'L', 'T');
106$pdf->Cell(30, 0, 'Descent-Top', 1, $ln=0, 'C', 0, '', 0, false, 'D', 'T');
107
108
109$pdf->SetXY(15, 120);
110
111// text on bottom
112$pdf->Cell(30, 0, 'Top-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'T', 'B');
113$pdf->Cell(30, 0, 'Center-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'C', 'B');
114$pdf->Cell(30, 0, 'Bottom-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'B', 'B');
115$pdf->Cell(30, 0, 'Ascent-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'A', 'B');
116$pdf->Cell(30, 0, 'Baseline-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'L', 'B');
117$pdf->Cell(30, 0, 'Descent-Bottom', 1, $ln=0, 'C', 0, '', 0, false, 'D', 'B');
118
119
120// draw some reference lines
121$linestyle = array('width' => 0.1, 'cap' => 'butt', 'join' => 'miter', 'dash' => '', 'phase' => 0, 'color' => array(255, 0, 0));
122$pdf->Line(15, 60, 195, 60, $linestyle);
123$pdf->Line(15, 90, 195, 90, $linestyle);
124$pdf->Line(15, 120, 195, 120, $linestyle);
125
126// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
127
128// Print an image to explain cell measures
129
130$pdf->Image('images/tcpdf_cell.png', 15, 160, 100, 100, 'PNG', '', '', false, 300, '', false, false, 0, false, false, false);
131$legend = 'LEGEND:
132
133X: cell x top-left origin (top-right for RTL)
134Y: cell y top-left origin (top-right for RTL)
135CW: cell width
136CH: cell height
137LW: line width
138NRL: normal line position
139EXT: external line position
140INT: internal line position
141ML: margin left
142MR: margin right
143MT: margin top
144MB: margin bottom
145PL: padding left
146PR: padding right
147PT: padding top
148PB: padding bottom
149TW: text width
150FA: font ascent
151FB: font baseline
152FD: font descent';
153$pdf->SetFont('helvetica', '', 10);
154$pdf->setCellHeightRatio(1.25);
155$pdf->MultiCell(0, 0, $legend, 0, 'L', false, 1, 125, 160, true, 0, false, true, 0, 'T', false);
156
157// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
158
159// CELL BORDERS
160
161// add a page
162$pdf->AddPage();
163
164$pdf->SetFont('helvetica', 'B', 20);
165
166$pdf->Write(0, 'Example of borders for Cell()', '', 0, 'L', true, 0, false, false, 0);
167
168$pdf->SetFont('helvetica', '', 11);
169
170// set border width
171$pdf->SetLineWidth(0.508);
172
173// set color for cell border
174$pdf->SetDrawColor(0,128,255);
175
176// set filling color
177$pdf->SetFillColor(255,255,128);
178
179// set cell height ratio
180$pdf->setCellHeightRatio(3);
181
182$pdf->Cell(30, 0, '1', 1, 1, 'C', 1, '', 0, false, 'T', 'C');
183$pdf->Ln(2);
184$pdf->Cell(30, 0, 'LTRB', 'LTRB', 1, 'C', 1, '', 0, false, 'T', 'C');
185$pdf->Ln(2);
186$pdf->Cell(30, 0, 'LTR', 'LTR', 1, 'C', 1, '', 0, false, 'T', 'C');
187$pdf->Ln(2);
188$pdf->Cell(30, 0, 'TRB', 'TRB', 1, 'C', 1, '', 0, false, 'T', 'C');
189$pdf->Ln(2);
190$pdf->Cell(30, 0, 'LRB', 'LRB', 1, 'C', 1, '', 0, false, 'T', 'C');
191$pdf->Ln(2);
192$pdf->Cell(30, 0, 'LTB', 'LTB', 1, 'C', 1, '', 0, false, 'T', 'C');
193$pdf->Ln(2);
194$pdf->Cell(30, 0, 'LT', 'LT', 1, 'C', 1, '', 0, false, 'T', 'C');
195$pdf->Ln(2);
196$pdf->Cell(30, 0, 'TR', 'TR', 1, 'C', 1, '', 0, false, 'T', 'C');
197$pdf->Ln(2);
198$pdf->Cell(30, 0, 'RB', 'RB', 1, 'C', 1, '', 0, false, 'T', 'C');
199$pdf->Ln(2);
200$pdf->Cell(30, 0, 'LB', 'LB', 1, 'C', 1, '', 0, false, 'T', 'C');
201$pdf->Ln(2);
202$pdf->Cell(30, 0, 'LR', 'LR', 1, 'C', 1, '', 0, false, 'T', 'C');
203$pdf->Ln(2);
204$pdf->Cell(30, 0, 'TB', 'TB', 1, 'C', 1, '', 0, false, 'T', 'C');
205$pdf->Ln(2);
206$pdf->Cell(30, 0, 'L', 'L', 1, 'C', 1, '', 0, false, 'T', 'C');
207$pdf->Ln(2);
208$pdf->Cell(30, 0, 'T', 'T', 1, 'C', 1, '', 0, false, 'T', 'C');
209$pdf->Ln(2);
210$pdf->Cell(30, 0, 'R', 'R', 1, 'C', 1, '', 0, false, 'T', 'C');
211$pdf->Ln(2);
212$pdf->Cell(30, 0, 'B', 'B', 1, 'C', 1, '', 0, false, 'T', 'C');
213
214// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
215
216// ADVANCED SETTINGS FOR CELL BORDERS
217
218// add a page
219$pdf->AddPage();
220
221$pdf->SetFont('helvetica', 'B', 20);
222
223$pdf->Write(0, 'Example of advanced border settings for Cell()', '', 0, 'L', true, 0, false, false, 0);
224
225$pdf->SetFont('helvetica', '', 11);
226
227// set border width
228$pdf->SetLineWidth(1);
229
230// set color for cell border
231$pdf->SetDrawColor(0,128,255);
232
233// set filling color
234$pdf->SetFillColor(255,255,128);
235
236$border = array('LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0)));
237$pdf->Cell(30, 0, 'LTRB', $border, 1, 'C', 1, '', 0, false, 'T', 'C');
238$pdf->Ln(5);
239
240$border = array(
241'L' => array('width' => 2, 'cap' => 'square', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0)),
242'R' => array('width' => 2, 'cap' => 'square', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 255)),
243'T' => array('width' => 2, 'cap' => 'square', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 255, 0)),
244'B' => array('width' => 2, 'cap' => 'square', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 255)));
245$pdf->Cell(30, 0, 'LTRB', $border, 1, 'C', 1, '', 0, false, 'T', 'C');
246$pdf->Ln(5);
247
248$border = array('mode' => 'ext', 'LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0)));
249$pdf->Cell(30, 0, 'LTRB EXT', $border, 1, 'C', 1, '', 0, false, 'T', 'C');
250$pdf->Ln(5);
251
252$border = array('mode' => 'int', 'LTRB' => array('width' => 2, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0)));
253$pdf->Cell(30, 0, 'LTRB INT', $border, 1, 'C', 1, '', 0, false, 'T', 'C');
254$pdf->Ln(5);
255
256// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
257
258// reset pointer to the last page
259$pdf->lastPage();
260
261// ---------------------------------------------------------
262
263//Close and output PDF document
264$pdf->Output('example_057.pdf', 'I');
265
266//============================================================+
267// END OF FILE
268//============================================================+
269