ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
example_011.php
Go to the documentation of this file.
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
27// Include the main TCPDF library (search for installation path).
28require_once('tcpdf_include.php');
29
30// extend TCPF with custom functions
31class MYPDF extends TCPDF {
32
33 // Load table data from file
34 public function LoadData($file) {
35 // Read file lines
36 $lines = file($file);
37 $data = array();
38 foreach($lines as $line) {
39 $data[] = explode(';', chop($line));
40 }
41 return $data;
42 }
43
44 // Colored table
45 public function ColoredTable($header,$data) {
46 // Colors, line width and bold font
47 $this->SetFillColor(255, 0, 0);
48 $this->SetTextColor(255);
49 $this->SetDrawColor(128, 0, 0);
50 $this->SetLineWidth(0.3);
51 $this->SetFont('', 'B');
52 // Header
53 $w = array(40, 35, 40, 45);
54 $num_headers = count($header);
55 for($i = 0; $i < $num_headers; ++$i) {
56 $this->Cell($w[$i], 7, $header[$i], 1, 0, 'C', 1);
57 }
58 $this->Ln();
59 // Color and font restoration
60 $this->SetFillColor(224, 235, 255);
61 $this->SetTextColor(0);
62 $this->SetFont('');
63 // Data
64 $fill = 0;
65 foreach($data as $row) {
66 $this->Cell($w[0], 6, $row[0], 'LR', 0, 'L', $fill);
67 $this->Cell($w[1], 6, $row[1], 'LR', 0, 'L', $fill);
68 $this->Cell($w[2], 6, number_format($row[2]), 'LR', 0, 'R', $fill);
69 $this->Cell($w[3], 6, number_format($row[3]), 'LR', 0, 'R', $fill);
70 $this->Ln();
71 $fill=!$fill;
72 }
73 $this->Cell(array_sum($w), 0, '', 'T');
74 }
75}
76
77// create new PDF document
79
80// set document information
81$pdf->SetCreator(PDF_CREATOR);
82$pdf->SetAuthor('Nicola Asuni');
83$pdf->SetTitle('TCPDF Example 011');
84$pdf->SetSubject('TCPDF Tutorial');
85$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
86
87// set default header data
89
90// set header and footer fonts
91$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
92$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
93
94// set default monospaced font
95$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
96
97// set margins
99$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
100$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
101
102// set auto page breaks
103$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
104
105// set image scale factor
106$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
107
108// set some language-dependent strings (optional)
109if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
110 require_once(dirname(__FILE__).'/lang/eng.php');
111 $pdf->setLanguageArray($l);
112}
113
114// ---------------------------------------------------------
115
116// set font
117$pdf->SetFont('helvetica', '', 12);
118
119// add a page
120$pdf->AddPage();
121
122// column titles
123$header = array('Country', 'Capital', 'Area (sq km)', 'Pop. (thousands)');
124
125// data loading
126$data = $pdf->LoadData('data/table_data_demo.txt');
127
128// print colored table
129$pdf->ColoredTable($header, $data);
130
131// ---------------------------------------------------------
132
133// close and output PDF document
134$pdf->Output('example_011.pdf', 'I');
135
136//============================================================+
137// END OF FILE
138//============================================================+
print $file
global $l
Definition: afr.php:30
ColoredTable($header, $data)
Definition: example_011.php:45
LoadData($file)
Definition: example_011.php:34
PHP class for generating PDF documents without requiring external extensions.
Definition: tcpdf.php:134
Ln($h='', $cell=false)
Performs a line break.
Definition: tcpdf.php:7368
SetLineWidth($width)
Defines the line width.
Definition: tcpdf.php:11280
Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M')
Prints a cell (rectangular area) with optional borders, background color and character string.
Definition: tcpdf.php:4994
SetDrawColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='')
Defines the color used for all drawing operations (lines, rectangles and cell borders).
Definition: tcpdf.php:3982
$w
Current width of page in user unit.
Definition: tcpdf.php:232
SetTextColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='')
Defines the color used for text.
Definition: tcpdf.php:4016
SetFillColor($col1=0, $col2=-1, $col3=-1, $col4=-1, $ret=false, $name='')
Defines the color used for all filling operations (filled rectangles and cell backgrounds).
Definition: tcpdf.php:3999
SetFont($family, $style='', $size=null, $fontfile='', $subset='default', $out=true)
Sets the font used to print character strings.
Definition: tcpdf.php:4427
$header
$data
$pdf
Definition: example_011.php:78
const PDF_FONT_NAME_MAIN
Default main font name.
const PDF_MARGIN_FOOTER
Footer margin.
const PDF_MARGIN_RIGHT
Right margin.
const PDF_PAGE_FORMAT
Page format.
const PDF_HEADER_STRING
Header description string.
const PDF_HEADER_TITLE
Header title.
const PDF_MARGIN_HEADER
Header margin.
const PDF_CREATOR
Document creator.
const PDF_MARGIN_BOTTOM
Bottom margin.
const PDF_FONT_MONOSPACED
Default monospaced font name.
const PDF_MARGIN_TOP
Top margin.
const PDF_FONT_NAME_DATA
Default data font name.
const PDF_FONT_SIZE_DATA
Default data font size.
const PDF_PAGE_ORIENTATION
Page orientation (P=portrait, L=landscape).
const PDF_UNIT
Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
const PDF_MARGIN_LEFT
Left margin.
const PDF_FONT_SIZE_MAIN
Default main font size.
const PDF_IMAGE_SCALE_RATIO
Ratio used to adjust the conversion of pixels to user units.
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.