Convert your own fonts to use with tcpdf
Convert .ttf or .otf fonts by using this online tools:
- http://fonts.snm-portal.com/
- http://www.xml-convert.com/en/convert-tff-font-to-afm-pfa-fpdf-tcpdf
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:
- Font file compressed (testfont.z)
- CIDToGIDMap created and compressed (testfont.ctg.z)
- Font definition file generated (testfont.php)
Put the converted fonts in the font directory:
Call the function to see your font in the pdf:
$pdf->SetFont('testfont', '', 12);