TFPDF字母重叠

时间:2019-03-08 10:37:04

标签: php fpdf

与标题相同。我使用tfpdf在课程页面上生成证书。在我的本地开发环境中,它运行良好,但在服务器上的字母重叠在一个地方

enter image description here

$pdf = new tFPDF('L','pt','A4');
$pdf->AddFont($font,'','OpenSans-Regular.ttf',true);
$pdf->SetFont($font,'',14);

$pdf->SetTopMargin(20); $pdf->SetLeftMargin(20);
$pdf->SetRightMargin(20);
$pdf->AddPage();

// if(!empty($certificate_image)) {
//  $pdf->Image($certificate_image, 0, 0, 850, 600);
// }


$pdf->SetTextColor($certificate_color[0], $certificate_color[1],$certificate_color[2]);
$pdf->SetFont($font,'',60);
$pdf->SetXY(40,100);
$pdf->Multicell(760,50,$certificate_title,0,'C',0);

$pdf->SetTextColor($certificate_color[0], $certificate_color[1], $certificate_color[2]);
$pdf->SetFont($font,'',40);
$pdf->SetXY(40,205);
$pdf->Multicell(760,50,$username,0,'C',0);

$pdf->SetFont($font,'',17);
$pdf->SetXY(190,290);
$pdf->Multicell(460,24, $certificate_text);

$pdf->Output();

1 个答案:

答案 0 :(得分:0)

我解决了我的问题。这是我使用的字体文件的错误。