Subversion Repositories Applications.annuaire

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
296 aurelien 1
<?php
2
//============================================================+
3
// File name   : example_012.php
4
// Begin       : 2008-03-04
5
// Last Update : 2010-08-08
6
//
7
// Description : Example 012 for TCPDF class
8
//               Graphic Functions
9
//
10
// Author: Nicola Asuni
11
//
12
// (c) Copyright:
13
//               Nicola Asuni
14
//               Tecnick.com s.r.l.
15
//               Via Della Pace, 11
16
//               09044 Quartucciu (CA)
17
//               ITALY
18
//               www.tecnick.com
19
//               info@tecnick.com
20
//============================================================+
21
 
22
/**
23
 * Creates an example PDF TEST document using TCPDF
24
 * @package com.tecnick.tcpdf
25
 * @abstract TCPDF - Example: Graphic Functions
26
 * @author Nicola Asuni
27
 * @copyright 2004-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
28
 * @link http://tcpdf.org
29
 * @license http://www.gnu.org/copyleft/lesser.html LGPL
30
 * @since 2008-03-04
31
 */
32
 
33
require_once('../config/lang/eng.php');
34
require_once('../tcpdf.php');
35
 
36
// create new PDF document
37
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
38
 
39
// set document information
40
$pdf->SetCreator(PDF_CREATOR);
41
$pdf->SetAuthor('Nicola Asuni');
42
$pdf->SetTitle('TCPDF Example 012');
43
$pdf->SetSubject('TCPDF Tutorial');
44
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
45
 
46
// disable header and footer
47
$pdf->setPrintHeader(false);
48
$pdf->setPrintFooter(false);
49
 
50
// set default monospaced font
51
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
52
 
53
//set margins
54
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
55
 
56
//set auto page breaks
57
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
58
 
59
//set image scale factor
60
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
61
 
62
//set some language-dependent strings
63
$pdf->setLanguageArray($l);
64
 
65
// ---------------------------------------------------------
66
 
67
// set font
68
$pdf->SetFont('helvetica', '', 10);
69
 
70
// add a page
71
$pdf->AddPage();
72
 
73
$style = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => '10,20,5,10', 'phase' => 10, 'color' => array(255, 0, 0));
74
$style2 = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0));
75
$style3 = array('width' => 1, 'cap' => 'round', 'join' => 'round', 'dash' => '2,10', 'color' => array(255, 0, 0));
76
$style4 = array('L' => 0,
77
                'T' => array('width' => 0.25, 'cap' => 'butt', 'join' => 'miter', 'dash' => '20,10', 'phase' => 10, 'color' => array(100, 100, 255)),
78
                'R' => array('width' => 0.50, 'cap' => 'round', 'join' => 'miter', 'dash' => 0, 'color' => array(50, 50, 127)),
79
                'B' => array('width' => 0.75, 'cap' => 'square', 'join' => 'miter', 'dash' => '30,10,5,10'));
80
$style5 = array('width' => 0.25, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 64, 128));
81
$style6 = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => '10,10', 'color' => array(0, 128, 0));
82
$style7 = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 128, 0));
83
 
84
// Line
85
$pdf->Text(5, 4, 'Line examples');
86
$pdf->Line(5, 10, 80, 30, $style);
87
$pdf->Line(5, 10, 5, 30, $style2);
88
$pdf->Line(5, 10, 80, 10, $style3);
89
 
90
// Rect
91
$pdf->Text(100, 4, 'Rectangle examples');
92
$pdf->Rect(100, 10, 40, 20, 'DF', $style4, array(220, 220, 200));
93
$pdf->Rect(145, 10, 40, 20, 'D', array('all' => $style3));
94
 
95
// Curve
96
$pdf->Text(5, 34, 'Curve examples');
97
$pdf->Curve(5, 40, 30, 55, 70, 45, 60, 75, null, $style6);
98
$pdf->Curve(80, 40, 70, 75, 150, 45, 100, 75, 'F', $style6);
99
$pdf->Curve(140, 40, 150, 55, 180, 45, 200, 75, 'DF', $style6, array(200, 220, 200));
100
 
101
// Circle and ellipse
102
$pdf->Text(5, 79, 'Circle and ellipse examples');
103
$pdf->SetLineStyle($style5);
104
$pdf->Circle(25,105,20);
105
$pdf->Circle(25,105,10, 90, 180, null, $style6);
106
$pdf->Circle(25,105,10, 270, 360, 'F');
107
$pdf->Circle(25,105,10, 270, 360, 'C', $style6);
108
 
109
$pdf->SetLineStyle($style5);
110
$pdf->Ellipse(100,103,40,20);
111
$pdf->Ellipse(100,105,20,10, 0, 90, 180, null, $style6);
112
$pdf->Ellipse(100,105,20,10, 0, 270, 360, 'DF', $style6);
113
 
114
$pdf->SetLineStyle($style5);
115
$pdf->Ellipse(175,103,30,15,45);
116
$pdf->Ellipse(175,105,15,7.50, 45, 90, 180, null, $style6);
117
$pdf->Ellipse(175,105,15,7.50, 45, 270, 360, 'F', $style6, array(220, 200, 200));
118
 
119
// Polygon
120
$pdf->Text(5, 129, 'Polygon examples');
121
$pdf->SetLineStyle(array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
122
$pdf->Polygon(array(5,135,45,135,15,165));
123
$pdf->Polygon(array(60,135,80,135,80,155,70,165,50,155), 'DF', array($style6, $style7, $style7, 0, $style6), array(220, 200, 200));
124
$pdf->Polygon(array(120,135,140,135,150,155,110,155), 'D', array($style6, 0, $style7, $style6));
125
$pdf->Polygon(array(160,135,190,155,170,155,200,160,160,165), 'DF', array('all' => $style6), array(220, 220, 220));
126
 
127
// Polygonal Line
128
$pdf->SetLineStyle(array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 164)));
129
$pdf->PolyLine(array(80,165,90,160,100,165,110,160,120,165,130,160,140,165), 'D', array(), array());
130
 
131
// Regular polygon
132
$pdf->Text(5, 169, 'Regular polygon examples');
133
$pdf->SetLineStyle($style5);
134
$pdf->RegularPolygon(20, 190, 15, 6, 0, 1, 'F');
135
$pdf->RegularPolygon(55, 190, 15, 6);
136
$pdf->RegularPolygon(55, 190, 10, 6, 45, 0, 'DF', array($style6, 0, $style7, 0, $style7, $style7));
137
$pdf->RegularPolygon(90, 190, 15, 3, 0, 1, 'DF', array('all' => $style5), array(200, 220, 200), 'F', array(255, 200, 200));
138
$pdf->RegularPolygon(125, 190, 15, 4, 30, 1, null, array('all' => $style5), null, null, $style6);
139
$pdf->RegularPolygon(160, 190, 15, 10);
140
 
141
// Star polygon
142
$pdf->Text(5, 209, 'Star polygon examples');
143
$pdf->SetLineStyle($style5);
144
$pdf->StarPolygon(20, 230, 15, 20, 3, 0, 1, 'F');
145
$pdf->StarPolygon(55, 230, 15, 12, 5);
146
$pdf->StarPolygon(55, 230, 7, 12, 5, 45, 0, 'DF', array('all' => $style7), array(220, 220, 200), 'F', array(255, 200, 200));
147
$pdf->StarPolygon(90, 230, 15, 20, 6, 0, 1, 'DF', array('all' => $style5), array(220, 220, 200), 'F', array(255, 200, 200));
148
$pdf->StarPolygon(125, 230, 15, 5, 2, 30, 1, null, array('all' => $style5), null, null, $style6);
149
$pdf->StarPolygon(160, 230, 15, 10, 3);
150
$pdf->StarPolygon(160, 230, 7, 50, 26);
151
 
152
// Rounded rectangle
153
$pdf->Text(5, 249, 'Rounded rectangle examples');
154
$pdf->SetLineStyle(array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(0, 0, 0)));
155
$pdf->RoundedRect(5, 255, 40, 30, 3.50, '1111', 'DF');
156
$pdf->RoundedRect(50, 255, 40, 30, 6.50, '1000');
157
$pdf->RoundedRect(95, 255, 40, 30, 10.0, '1111', null, $style6);
158
$pdf->RoundedRect(140, 255, 40, 30, 8.0, '0101', 'DF', $style6, array(200, 200, 200));
159
 
160
// Arrows
161
$pdf->Text(185, 249, 'Arrows');
162
$pdf->SetLineStyle($style5);
163
$pdf->SetFillColor(255, 0, 0);
164
$pdf->Arrow($x0=200, $y0=280, $x1=185, $y1=266, $head_style=0, $arm_size=5, $arm_angle=15);
165
$pdf->Arrow($x0=200, $y0=280, $x1=190, $y1=263, $head_style=1, $arm_size=5, $arm_angle=15);
166
$pdf->Arrow($x0=200, $y0=280, $x1=195, $y1=261, $head_style=2, $arm_size=5, $arm_angle=15);
167
$pdf->Arrow($x0=200, $y0=280, $x1=200, $y1=260, $head_style=3, $arm_size=5, $arm_angle=15);
168
 
169
// - . - . - . - . - . - . - . - . - . - . - . - . - . - . -
170
 
171
// ellipse
172
 
173
// add a page
174
$pdf->AddPage();
175
 
176
$pdf->Cell(0, 0, 'Arc of Ellipse');
177
 
178
// center of ellipse
179
$xc=100;
180
$yc=100;
181
 
182
// X Y axis
183
$pdf->SetDrawColor(200, 200, 200);
184
$pdf->Line($xc-50, $yc, $xc+50, $yc);
185
$pdf->Line($xc, $yc-50, $xc, $yc+50);
186
 
187
// ellipse axis
188
$pdf->SetDrawColor(200, 220, 255);
189
$pdf->Line($xc-50, $yc-50, $xc+50, $yc+50);
190
$pdf->Line($xc-50, $yc+50, $xc+50, $yc-50);
191
 
192
// ellipse
193
$pdf->SetDrawColor(200, 255, 200);
194
$pdf->Ellipse($xc, $yc, $rx=30, $ry=15, $angle=45, $astart=0, $afinish=360, $style='D', $line_style=array(), $fill_color=array(), $nc=2);
195
 
196
// ellipse arc
197
$pdf->SetDrawColor(255, 0, 0);
198
$pdf->Ellipse($xc, $yc, $rx=30, $ry=15, $angle=45, $astart=45, $afinish=90, $style='D', $line_style=array(), $fill_color=array(), $nc=2);
199
 
200
 
201
// ---------------------------------------------------------
202
 
203
//Close and output PDF document
204
$pdf->Output('example_012.pdf', 'I');
205
 
206
//============================================================+
207
// END OF FILE
208
//============================================================+