我有这个片段,在拉拉维尔,那里有一个包装器。注意:我直接使用 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 );
我的需求只是用粗体写我的文字。我不需要更改字体文件。
如何?!
江户川乱折腾