TimeTrex/vendor/setasign/fpdf/tutorial/tuto7.php

12 lines
254 B
PHP
Raw Permalink Normal View History

2022-12-13 07:10:06 +01:00
<?php
define('FPDF_FONTPATH','.');
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddFont('CevicheOne','','CevicheOne-Regular.php');
$pdf->AddPage();
$pdf->SetFont('CevicheOne','',45);
$pdf->Cell(0,10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?>