猿问

mPDF:如何使用粗体文本的写单元格函数?

我有这个片段,在拉拉维尔,那里有一个包装器。注意:我直接使用 mPDF,而不是包装器函数


    $pdf = new MPdf();

    $mpdf = $pdf->getMpdf();

    $mpdf->SetSourceFile(public_path() . DIRECTORY_SEPARATOR  . 'pdf' . DIRECTORY_SEPARATOR   . 'my_template.pdf');

    $template = $mpdf->ImportPage(1);

    $mpdf->UseTemplate($template);

    $mpdf->WriteCell(130,140, $text_to_write );

我的需求只是用粗体写我的文字。我不需要更改字体文件。


如何?!


九州编程
浏览 77回答 1
1回答

江户川乱折腾

我已解决访问基础 FPDF 函数的问题。回顾:拉拉维尔-mpdf是mPDF的包装器。mPDF“包装”并增强了少数几个PDF处理库之一。这里说明:https://mpdf.github.io/:“它基于FFF和HTML2FPDF,具有许多增强功能”有了这些信息,我只是尝试使用FFP函数,它们就起作用了。文档: http://www.fpdf.org/en/doc片段 $pdf = new MPdf();    $mpdf = $pdf->getMpdf();    $mpdf->SetSourceFile('name_and_path_of_template_file.pdf');    $template = $mpdf->ImportPage(1);    $mpdf->UseTemplate($template);    $mpdf->SetFont('Arial','B', 11);    $mpdf->WriteText(11,82, $what_to_write_in_bold );    $mpdf->SetFont('Arial','', 10);    $mpdf->WriteText(164, 243.46, $what_to_write_in_noraml);    $mpdf->Output();
随时随地看视频慕课网APP
我要回答