~critecia/critecia/trunk

« back to all changes in this revision

Viewing changes to src/app/vendors/tcpdf/examples/example_052.php

  • Committer: Christian A. Reiter
  • Date: 2011-11-16 20:08:35 UTC
  • Revision ID: christian.a.reiter@gmail.com-20111116200835-h3xx0ekm47lububw
fixed jQuery file links

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
//============================================================+
3
 
// File name   : example_052.php
4
 
// Begin       : 2009-05-07
5
 
// Last Update : 2010-08-08
6
 
//
7
 
// Description : Example 052 for TCPDF class
8
 
//               Certification Signature (experimental)
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: Certification Signature (experimental)
26
 
 * @author Nicola Asuni
27
 
 * @since 2009-05-07
28
 
 */
29
 
 
30
 
require_once('../config/lang/eng.php');
31
 
require_once('../tcpdf.php');
32
 
 
33
 
// create new PDF document
34
 
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
35
 
 
36
 
// set document information
37
 
$pdf->SetCreator(PDF_CREATOR);
38
 
$pdf->SetAuthor('Nicola Asuni');
39
 
$pdf->SetTitle('TCPDF Example 052');
40
 
$pdf->SetSubject('TCPDF Tutorial');
41
 
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
42
 
 
43
 
// set default header data
44
 
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 052', PDF_HEADER_STRING);
45
 
 
46
 
// set header and footer fonts
47
 
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
48
 
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
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
 
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
56
 
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
57
 
 
58
 
//set auto page breaks
59
 
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
60
 
 
61
 
//set image scale factor
62
 
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
63
 
 
64
 
//set some language-dependent strings
65
 
$pdf->setLanguageArray($l);
66
 
 
67
 
// ---------------------------------------------------------
68
 
 
69
 
/*
70
 
NOTES:
71
 
 - To create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
72
 
 - To export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
73
 
 - To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes
74
 
*/
75
 
 
76
 
// set certificate file
77
 
$certificate = 'file://../tcpdf.crt';
78
 
 
79
 
// set additional information
80
 
$info = array(
81
 
        'Name' => 'TCPDF',
82
 
        'Location' => 'Office',
83
 
        'Reason' => 'Testing TCPDF',
84
 
        'ContactInfo' => 'http://www.tcpdf.org',
85
 
        );
86
 
 
87
 
// set document signature
88
 
$pdf->setSignature($certificate, $certificate, 'tcpdfdemo', '', 2, $info);
89
 
 
90
 
// set font
91
 
$pdf->SetFont('helvetica', '', 12);
92
 
 
93
 
// add a page
94
 
$pdf->AddPage();
95
 
 
96
 
// print a line of text
97
 
$text = 'This is a <b color="#FF0000">digitally signed document</b> using the default (example) <b>tcpdf.crt</b> certificate.<br />To validate this signature you have to load the <b color="#006600">tcpdf.fdf</b> on the Arobat Reader to add the certificate to <i>List of Trusted Identities</i>.<br /><br />For more information check the source code of this example and the source code documentation for the <i>setSignature()</i> method.<br /><br /><a href="http://www.tcpdf.org">www.tcpdf.org</a>';
98
 
$pdf->writeHTML($text, true, 0, true, 0);
99
 
 
100
 
 
101
 
// *** set signature appearance ***
102
 
 
103
 
// create content for signature (image and/or text)
104
 
$pdf->Image($file='../images/tcpdf_signature.png', $x=180, $y=60, $w=15, $h=15, $type='PNG');
105
 
// define active area for signature appearance
106
 
$pdf->setSignatureAppearance($x=180, $y=60, $w=15, $h=15);
107
 
 
108
 
// ---------------------------------------------------------
109
 
 
110
 
//Close and output PDF document
111
 
$pdf->Output('example_052.pdf', 'I');
112
 
 
113
 
//============================================================+
114
 
// END OF FILE
115
 
//============================================================+