Convert your own fonts to use with tcpdf

Convert .ttf or .otf fonts by using this online tools:

or by

$fontname = $pdf->addTTFfont('/path-to-font/DejaVuSans.ttf',
'TrueTypeUnicode', '', 32);

Fore more informations see: http://www.tcpdf.org/fonts.php

For each font three files are generated:

Put the converted fonts in the font directory:

Call the function to see your font in the pdf:

$pdf->SetFont('testfont', '', 12);