-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdf_class.php
116 lines (95 loc) · 2.83 KB
/
pdf_class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
class PDF extends FPDF
{
public string $logo_path;
public function __construct(string $logo_path) {
parent::__construct();
$this->logo_path = $logo_path;
}
function Font(){
// $this->AddFont('HelveticaLt','','/HelveticaLt.php');
}
// En-tête
function Header()
{
// Logo
$this->Image($this->logo_path,10,6,50);
// Police Arial gras 15
$this->SetFont('Arial','B',14);
// Décalage à droite
// $this->Cell(73);
// Titre
$this->SetXY (15,25);
$this->Cell(0,10,utf8_decode('Léman électronique: code d\'autorisation personnel'),0,0,'C');
// Saut de ligne
$this->Ln(12);
$this->AjoutBoldParagraphe('Attention, ce document est à conserver précieusement dans vos dossiers !');
}
// Pied de page
function Footer()
{
$this->SetMargins(15,0,15);
$this->SetTextColor(0,111,180);
// Positionnement à 1,5 cm du bas
$this->SetY(-15);
$this->SetFont('Helvetica','',8);
// Numéro de page
// bleu
$this->Cell(0,10,utf8_decode('Monnaie Léman | monnaie-leman.org | [email protected]'),0,0,'C',false,'https://monnaie-leman.org/');
}
function AjoutText_2($text){
// Helvetica 10
$this->SetFont('Helvetica','',9);
$this->MultiCell(180,5,utf8_decode($text));
}
function AjoutText($text){
// Helvetica 10
$this->SetFont('Helvetica','',9);
$this->Write(5,utf8_decode($text));
}
function AjoutBold($text){
// Helvetica 10
$this->SetFont('Helvetica','B',9);
$this->SetTextColor(240,113,18);
$this->Write(5,utf8_decode($text));
$this->SetTextColor(0,0,0);
}
function AjoutBold_2($text){
// Helvetica 10
$this->SetFont('Helvetica','B',9);
$this->SetTextColor(240,113,18);
$this->MultiCell(180,5,utf8_decode($text),0,'C');
$this->SetTextColor(0,0,0);
}
function AjoutLien($text,$liens){
$this->SetTextColor(0,111,180);
$this->SetFont('Helvetica','U',9);
$this->Write(5,utf8_decode($text),$liens);
$this->SetTextColor(0,0,0);
}
function SautDeLigne(){
$this->Ln();
}
function LigneVide(){
$this->Ln();
$this->Ln();
}
function AjoutParagraphe($text){
$this->AjoutText_2($text);
$this->SautDeLigne();
}
function AjoutBoldParagraphe($text)
{
$this->AjoutBold_2($text);
$this->SautDeLigne();
}
function AjoutCadreParagraphe($text)
{
// Helvetica 10
$this->SetFont('Courier','',9);
// Sortie du texte justifié
$this->MultiCell(180,5,utf8_decode($text),1,'C');
$this->Ln();
}
}
?>