Projet

Général

Profil

Paste
Télécharger (9,7 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / tcpdf-6.2.9 / examples / example_061.php @ 99781f3b

1
<?php
2
//============================================================+
3
// File name   : example_061.php
4
// Begin       : 2010-05-24
5
// Last Update : 2014-01-25
6
//
7
// Description : Example 061 for TCPDF class
8
//               XHTML + CSS
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: XHTML + CSS
23
 * @author Nicola Asuni
24
 * @since 2010-05-25
25
 */
26

    
27
// Include the main TCPDF library (search for installation path).
28
require_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 061');
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.' 061', 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)
62
if (@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', '', 10);
71

    
72
// add a page
73
$pdf->AddPage();
74

    
75
/* NOTE:
76
 * *********************************************************
77
 * You can load external XHTML using :
78
 *
79
 * $html = file_get_contents('/path/to/your/file.html');
80
 *
81
 * External CSS files will be automatically loaded.
82
 * Sometimes you need to fix the path of the external CSS.
83
 * *********************************************************
84
 */
85

    
86
// define some HTML content with style
87
$html = <<<EOF
88
<!-- EXAMPLE OF CSS STYLE -->
89
<style>
90
        h1 {
91
                color: navy;
92
                font-family: times;
93
                font-size: 24pt;
94
                text-decoration: underline;
95
        }
96
        p.first {
97
                color: #003300;
98
                font-family: helvetica;
99
                font-size: 12pt;
100
        }
101
        p.first span {
102
                color: #006600;
103
                font-style: italic;
104
        }
105
        p#second {
106
                color: rgb(00,63,127);
107
                font-family: times;
108
                font-size: 12pt;
109
                text-align: justify;
110
        }
111
        p#second > span {
112
                background-color: #FFFFAA;
113
        }
114
        table.first {
115
                color: #003300;
116
                font-family: helvetica;
117
                font-size: 8pt;
118
                border-left: 3px solid red;
119
                border-right: 3px solid #FF00FF;
120
                border-top: 3px solid green;
121
                border-bottom: 3px solid blue;
122
                background-color: #ccffcc;
123
        }
124
        td {
125
                border: 2px solid blue;
126
                background-color: #ffffee;
127
        }
128
        td.second {
129
                border: 2px dashed green;
130
        }
131
        div.test {
132
                color: #CC0000;
133
                background-color: #FFFF66;
134
                font-family: helvetica;
135
                font-size: 10pt;
136
                border-style: solid solid solid solid;
137
                border-width: 2px 2px 2px 2px;
138
                border-color: green #FF00FF blue red;
139
                text-align: center;
140
        }
141
        .lowercase {
142
                text-transform: lowercase;
143
        }
144
        .uppercase {
145
                text-transform: uppercase;
146
        }
147
        .capitalize {
148
                text-transform: capitalize;
149
        }
150
</style>
151

152
<h1 class="title">Example of <i style="color:#990000">XHTML + CSS</i></h1>
153

154
<p class="first">Example of paragraph with class selector. <span>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.</span></p>
155

156
<p id="second">Example of paragraph with ID selector. <span>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.</span></p>
157

158
<div class="test">example of DIV with border and fill.
159
<br />Lorem ipsum dolor sit amet, consectetur adipiscing elit.
160
<br /><span class="lowercase">text-transform <b>LOWERCASE</b> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
161
<br /><span class="uppercase">text-transform <b>uppercase</b> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
162
<br /><span class="capitalize">text-transform <b>cAPITALIZE</b> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
163
</div>
164

165
<br />
166

167
<table class="first" cellpadding="4" cellspacing="6">
168
 <tr>
169
  <td width="30" align="center"><b>No.</b></td>
170
  <td width="140" align="center" bgcolor="#FFFF00"><b>XXXX</b></td>
171
  <td width="140" align="center"><b>XXXX</b></td>
172
  <td width="80" align="center"> <b>XXXX</b></td>
173
  <td width="80" align="center"><b>XXXX</b></td>
174
  <td width="45" align="center"><b>XXXX</b></td>
175
 </tr>
176
 <tr>
177
  <td width="30" align="center">1.</td>
178
  <td width="140" rowspan="6" class="second">XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX</td>
179
  <td width="140">XXXX<br />XXXX</td>
180
  <td width="80">XXXX<br />XXXX</td>
181
  <td width="80">XXXX</td>
182
  <td align="center" width="45">XXXX<br />XXXX</td>
183
 </tr>
184
 <tr>
185
  <td width="30" align="center" rowspan="3">2.</td>
186
  <td width="140" rowspan="3">XXXX<br />XXXX</td>
187
  <td width="80">XXXX<br />XXXX</td>
188
  <td width="80">XXXX<br />XXXX</td>
189
  <td align="center" width="45">XXXX<br />XXXX</td>
190
 </tr>
191
 <tr>
192
  <td width="80">XXXX<br />XXXX<br />XXXX<br />XXXX</td>
193
  <td width="80">XXXX<br />XXXX</td>
194
  <td align="center" width="45">XXXX<br />XXXX</td>
195
 </tr>
196
 <tr>
197
  <td width="80" rowspan="2" >XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX<br />XXXX</td>
198
  <td width="80">XXXX<br />XXXX</td>
199
  <td align="center" width="45">XXXX<br />XXXX</td>
200
 </tr>
201
 <tr>
202
  <td width="30" align="center">3.</td>
203
  <td width="140">XXXX<br />XXXX</td>
204
  <td width="80">XXXX<br />XXXX</td>
205
  <td align="center" width="45">XXXX<br />XXXX</td>
206
 </tr>
207
 <tr bgcolor="#FFFF80">
208
  <td width="30" align="center">4.</td>
209
  <td width="140" bgcolor="#00CC00" color="#FFFF00">XXXX<br />XXXX</td>
210
  <td width="80">XXXX<br />XXXX</td>
211
  <td width="80">XXXX<br />XXXX</td>
212
  <td align="center" width="45">XXXX<br />XXXX</td>
213
 </tr>
214
</table>
215
EOF;
216

    
217
// output the HTML content
218
$pdf->writeHTML($html, true, false, true, false, '');
219

    
220
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
221

    
222
// add a page
223
$pdf->AddPage();
224

    
225
$html = '
226
<h1>HTML TIPS & TRICKS</h1>
227

228
<h3>REMOVE CELL PADDING</h3>
229
<pre>$pdf->SetCellPadding(0);</pre>
230
This is used to remove any additional vertical space inside a single cell of text.
231

232
<h3>REMOVE TAG TOP AND BOTTOM MARGINS</h3>
233
<pre>$tagvs = array(\'p\' => array(0 => array(\'h\' => 0, \'n\' => 0), 1 => array(\'h\' => 0, \'n\' => 0)));
234
$pdf->setHtmlVSpace($tagvs);</pre>
235
Since the CSS margin command is not yet implemented on TCPDF, you need to set the spacing of block tags using the following method.
236

237
<h3>SET LINE HEIGHT</h3>
238
<pre>$pdf->setCellHeightRatio(1.25);</pre>
239
You can use the following method to fine tune the line height (the number is a percentage relative to font height).
240

241
<h3>CHANGE THE PIXEL CONVERSION RATIO</h3>
242
<pre>$pdf->setImageScale(0.47);</pre>
243
This is used to adjust the conversion ratio between pixels and document units. Increase the value to get smaller objects.<br />
244
Since you are using pixel unit, this method is important to set theright zoom factor.<br /><br />
245
Suppose that you want to print a web page larger 1024 pixels to fill all the available page width.<br />
246
An A4 page is larger 210mm equivalent to 8.268 inches, if you subtract 13mm (0.512") of margins for each side, the remaining space is 184mm (7.244 inches).<br />
247
The default resolution for a PDF document is 300 DPI (dots per inch), so you have 7.244 * 300 = 2173.2 dots (this is the maximum number of points you can print at 300 DPI for the given width).<br />
248
The conversion ratio is approximatively 1024 / 2173.2 = 0.47 px/dots<br />
249
If the web page is larger 1280 pixels, on the same A4 page the conversion ratio to use is 1280 / 2173.2 = 0.59 pixels/dots';
250

    
251
// output the HTML content
252
$pdf->writeHTML($html, true, false, true, false, '');
253

    
254
// reset pointer to the last page
255
$pdf->lastPage();
256

    
257
// ---------------------------------------------------------
258

    
259
//Close and output PDF document
260
$pdf->Output('example_061.pdf', 'I');
261

    
262
//============================================================+
263
// END OF FILE
264
//============================================================+