php生成PDF使用的类MPDF

原文链接: http://www.cnblogs.com/wepe/p/7424596.html

mpdf的官方下载地址:http://www.mpdf1.com/mpdf/download

官方提供的文档:http://mpdf1.com/manual/

方法一

$html = "对盲人初学者来说,它无需任何额外的修改。";
// $html = "These are the most used acronyms throughout this manual.";
include './mpdf/mpdf.php';
$mpdf=new mPDF('+aCJK'); 
$mpdf->autoScriptToLang = true;
$mpdf->autoLangToFont = true;
$mpdf->WriteHTML($html);
$mpdf->Output();

方法二

useAdobeCJK = true;
//$mpdf->SetAutoFont(AUTOFONT_ALL);//使用6.0以上版本不需要
 
//获取要生成的静态文件
$html=file_get_contents('template.html');
 
echo $html;exit;
 
//设置PDF页眉内容
$header='
页眉
'; //设置PDF页脚内容 $footer='
页脚 页码:{PAGENO}/{nb}
'; //添加页眉和页脚到pdf中 $mpdf->SetHTMLHeader($header); $mpdf->SetHTMLFooter($footer); //设置pdf显示方式 $mpdf->SetDisplayMode('fullpage'); //设置pdf的尺寸为270mm*397mm //$mpdf->WriteHTML(''); //创建pdf文件 $mpdf->WriteHTML($html); //删除pdf第一页(由于设置pdf尺寸导致多出了一页) //$mpdf->DeletePages(1,1); //输出pdf $mpdf->Output();//可以写成下载此pdf $mpdf->Output('文件名','D'); exit; ?>

转载于:https://www.cnblogs.com/wepe/p/7424596.html

你可能感兴趣的:(php生成PDF使用的类MPDF)