将字体复制到TCPDF\tools 目录下
打开CMD窗口定位到TCPDF\tools 目录 执行下面的命令
我们以微软雅黑字体为例
php ./tcpdf_addfont.php -b -t TrueTypeUnicode -f 97 -i YaHei.ttf
如果出现下面的提示代码, 请检查TCPDF\tools 目录下的TTF字体文件是否有效
>>> Converting fonts for TCPDF:
*** Output dir set to D:\wwwroot\KylinPHP\ChaoHao\vendor\tecnickcom\tcpdf/fonts/
--- ERROR: can't add YaHei.ttf
--- Process completed with ERRORS!
成功会出现下面的提示代码
>>> Converting fonts for TCPDF:
*** Output dir set to D:\wwwroot\KylinPHP\ChaoHao\vendor\tecnickcom\tcpdf/fonts/
+++ OK : D:\wwwroot\KylinPHP\ChaoHao\vendor\tecnickcom\tcpdf\tools\yahei.ttf added
as yahei
>>> Process successfully completed!
这时微软雅黑字体就转换完成并复制到TCPDF\fonts目录下了
直接设置字体即可
$pdf->SetFont('yahei', '', 10, '', true);