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_062.php
4
// Begin       : 2010-08-25
5
// Last Update : 2010-08-25
6
//
7
// Description : Example 062 for TCPDF class
8
//               XObject Template
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: XObject Template
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 2010-08-25
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 062');
43
$pdf->SetSubject('TCPDF Tutorial');
44
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
45
 
46
// set default header data
47
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 062', PDF_HEADER_STRING);
48
 
49
// set header and footer fonts
50
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
51
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
52
 
53
// set default monospaced font
54
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
55
 
56
//set margins
57
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
58
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
59
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
60
 
61
//set auto page breaks
62
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
63
 
64
//set image scale factor
65
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
66
 
67
//set some language-dependent strings
68
$pdf->setLanguageArray($l);
69
 
70
// ---------------------------------------------------------
71
 
72
// set font
73
$pdf->SetFont('helvetica', 'B', 20);
74
 
75
// add a page
76
$pdf->AddPage();
77
 
78
$pdf->Write(0, 'XObject Templates', '', 0, 'C', 1, 0, false, false, 0);
79
 
80
/*
81
 * An XObject Template is a PDF block that is a self-contained
82
 * description of any sequence of graphics objects (including path
83
 * objects, text objects, and sampled images).
84
 * An XObject Template may be painted multiple times, either on
85
 * several pages or at several locations on the same page and produces
86
 * the same results each time, subject only to the graphics state at
87
 * the time it is invoked.
88
 */
89
 
90
// start a new XObject Template
91
$template_id = $pdf->startTemplate(60, 60);
92
 
93
 
94
// create Template content
95
// ...................................................................
96
//Start Graphic Transformation
97
$pdf->StartTransform();
98
 
99
// set clipping mask
100
$pdf->StarPolygon(30, 30, 29, 10, 3, 0, 1, 'CNZ');
101
 
102
// draw jpeg image to be clipped
103
$pdf->Image('../images/image_demo.jpg', 0, 0, 60, 60, '', '', '', true, 72, '', false, false, 0, false, false, false);
104
 
105
//Stop Graphic Transformation
106
$pdf->StopTransform();
107
 
108
$pdf->SetXY(0, 0);
109
 
110
$pdf->SetFont('times', '', 40);
111
 
112
$pdf->SetTextColor(255, 0, 0);
113
 
114
// print a text
115
$pdf->Cell(60, 60, 'Template', 0, 0, 'C', false, '', 0, false, 'T', 'M');
116
// ...................................................................
117
 
118
 
119
// end the current Template
120
$pdf->endTemplate();
121
 
122
// print the selected Template various times
123
 
124
$pdf->printTemplate($template_id, 15, 50, 20, 20, '', '', false);
125
 
126
$pdf->printTemplate($template_id, 27, 62, 40, 40, '', '', false);
127
 
128
$pdf->printTemplate($template_id, 55, 85, 60, 60, '', '', false);
129
 
130
$pdf->printTemplate($template_id, 95, 125, 80, 80, '', '', false);
131
 
132
// ---------------------------------------------------------
133
 
134
//Close and output PDF document
135
$pdf->Output('example_062.pdf', 'I');
136
 
137
//============================================================+
138
// END OF FILE
139
//============================================================+