commitall
This commit is contained in:
11
application/third_party/fpdf/tutorial/tuto7.php
vendored
Normal file
11
application/third_party/fpdf/tutorial/tuto7.php
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<?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();
|
||||
?>
|
Reference in New Issue
Block a user