TCPDF supports TrueTypeUnicode (UTF-8 Unicode), OpenTypeUnicode, TrueType, OpenType, Type1, CID-0 and Core (standard) fonts.
You will find font creation utility at fonts/utils of TCPDF… copy desired font to fonts/utils/phpsolutions.ttf
* For TrueTypeUnicode
# cd /var/www/html/tcpdf/fonts/utils
# ttf2ufm -a -F phpsolutions.ttf
# php -q makefont.php phpsolutions.ttf phpsolutions.ufm
* For embedded fonts to tcpdf PDF file.. copy the resulting phpsolutions.php, phpsolutions.z and phpsolutions.ctg.z to fonts folder
Uses:
<?php
……..
$pdf->SetFont(‘phpsolutions’,’I’,8);
……….
?>
One Response to Create TCPDF PHP Fonts
Leave a Reply
You must be logged in to post a comment.
Wow, that’s quite a nice read!