MakeFont(string fontfile [, string enc [, boolean embed [, boolean subset]]])
fontfile
Ubicación del fichero .ttf, .otf o .pfb.
enc
Nombre de la codificación. Valor por defecto: cp1252
.
embed
Si se incorpora o no la fuente. Valor por defecto: true
.
subset
Si un subconjunto de la fuente o no. Valor por defecto: true
.
$file
en el fichero
.php consecuentemente.
<?php
require('makefont/makefont.php');
MakeFont('c:\\Windows\\Fonts\\comic.ttf','cp1252');
?>
$pdf->AddFont('Comic','','comic.php');
$pdf->AddFont('Comic','B','comicbd.php');
<?php
require('makefont/makefont.php');
MakeFont('CevicheOne-Regular.ttf','cp1252');
?>
<?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();
?>