MakeFont(string fontfile [, string enc [, boolean embed [, boolean subset]]])
fontfile
Percorso del file .ttf, .otf or .pfb.
enc
Nome della codifica in uso. Predefinito: cp1252
.
embed
Se incorporare il font o meno. Predefinito: true
.
subset
Se inserire il sottoinsieme del font o meno. Predefinito: true
.
$file
del file .php di conseguenza.
<?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('calligra.ttf','cp1252');
?>
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddFont('Calligrapher','','calligra.php');
$pdf->AddPage();
$pdf->SetFont('Calligrapher','',35);
$pdf->Write(10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?>