isu73/tfpdf

此类是FPDF的修改版,增加了对UTF-8的支持和额外的功能。

dev-main 2023-05-08 22:47 UTC

This package is auto-updated.

Last update: 2024-09-25 01:12:47 UTC


README

原始代码可在http://fpdf.org/en/script/script92.php找到
此类是FPDF的修改版,增加了对UTF-8的支持和额外的功能。

将Arial和Times New Roman True Type字体添加到"unifont"文件夹。
您可以添加更多字体,仅限True Type。
$pdf->AddFont('arial','','arial.ttf',true);
$pdf->AddFont('times','','times.ttf',true);

附加功能
GetMultiCellHeight(不需要边框,填充变量不必要)
$pdf->GetMultiCellHeight($w, $h, $txt, $align)

MultiCellWithOffset(偏移单元格左右)
MultiCellWithOffset($w, $h, $txt, $border, $align, $loffset, $roffset, $fill)

CellWithPadding(左右填充)
CellWithPadding($w, $h, $txt, $border, $ln, $align, $lpadding, $rpadding, $fill, $link)