Files
crm-ms1/v4_ci4/app/ThirdParty/FPDF/tutorial/tuto7.php
2026-05-27 11:44:10 -04:00

11 lines
228 B
PHP

<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddFont('CevicheOne','','CevicheOne-Regular.php','.');
$pdf->AddPage();
$pdf->SetFont('CevicheOne','',45);
$pdf->Write(10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?>