How to apply tcpdf tamil font by using codeigniter

感情迁移 提交于 2019-12-12 04:16:35

问题


I apply this line:

 $pdf->SetFont('freeserif', '', 14, '', true); 

but my not getting the exact output.


回答1:


when using TCPDF library you can make your class by inherit from TCPDF class:

class MYPDF extends TCPDF {

you can override the footer and header function as you like, and inside these functions you can set your font. but TCPDF contains some fonts if you want add new font you must download it and extract it in tcpdf/fonts/utils folder and use it by this way:

$ge_hili_light = $this->addTTFfont(MAIN_DOCUMENT_ROOT .
'/includes/tcpdf/fonts/utils/ge-hili-light.ttf', 'TrueTypeUnicode', '', 32);
$this->SetFont($ge_hili_light, 'B', 12, "", false);

where $this refer to MYPDF class which extend from TCPDF class



来源:https://stackoverflow.com/questions/35555889/how-to-apply-tcpdf-tamil-font-by-using-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!