本文整理汇总了PHP中mPDF::useTemplate方法的典型用法代码示例。如果您正苦于以下问题:PHP mPDF::useTemplate方法的具体用法?PHP mPDF::useTemplate怎么用?PHP mPDF::useTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mPDF
的用法示例。
在下文中一共展示了mPDF::useTemplate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add_template
public static function add_template($pdf_name)
{
global $pdf;
/*
* Get the page sizes so we can load each page correctly
* The only way to do this is to initilise and load the PDF, read the sizes and
* then correctly initilise the class.
*/
$pdf_temp = new mPDF();
$pdf_temp->SetImportUse();
/* LOAD THE PDF FILE
* Must be in Acrobat 4.0 (PDF v1.3) format.
* See manual for more details
* http://www.setasign.de/support/manuals/fpdi/fpdi/fpdi-setsourcefile/
*/
$pagecount = $pdf_temp->SetSourceFile($pdf_name);
/* CREATE A TEMPLATE FOR EACH PDF PAGE
* See manual for more details
* http://www.setasign.de/support/manuals/fpdi/fpdi/fpdi-importpage/
*/
for ($i = 1; $i <= $pagecount; $i++) {
$pdf_load[$i] = $pdf_temp->ImportPage($i);
$pdf_template_size[$i] = $pdf_temp->useTemplate($pdf_load[$i]);
}
/*
* Set the real object
*/
$pagecount = $pdf->SetSourceFile($pdf_name);
for ($i = 1; $i <= $pagecount; $i++) {
$pdf_load[$i] = $pdf->ImportPage($i);
}
return array('load' => $pdf_load, 'size' => $pdf_template_size);
}