到官网下载,解压到网站目录下,使用。
<?php include('mpdf.php'); $mpdf=new mPDF('UTF-8','A4','','',15,15,44,15); $mpdf->useAdobeCJK = true; $mpdf->SetAutoFont(AUTOFONT_ALL); $mpdf->SetDisplayMode('fullpage'); //$mpdf->watermark_font = 'GB'; //$mpdf->SetWatermarkText('中国水印',0.1); $url = 'http://www.你的域名.com/'; $strContent = file_get_contents($url); //print_r($strContent);die; $mpdf->showWatermarkText = true; $mpdf->SetAutoFont(); //$mpdf->SetHTMLHeader( '头部' ); //$mpdf->SetHTMLFooter( '底部' ); $mpdf->WriteHTML($strContent); $mpdf->Output('ss.pdf'); //$mpdf->Output('tmp.pdf',true); //$mpdf->Output('tmp.pdf','d'); //$mpdf->Output(); exit; ?>
这个不完美方法,MPDF只能解析相对简单的css(不能解析js和css中ul li等标签)。现在既然使用了wkhtmltoimage扩展,也就不在乎wkhtmltopdf的使用了。
同样,wkhtmltoimage 0.11会出现错误,需要下载0.10.0_rc2版。
32位:
wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.10.0_rc2-static-i386.tar.bz2 tar jxf wkhtmltopdf-0.10.0_rc2-static-i386.tar.bz2 cp wkhtmltoimage-i386 /usr/local/bin/wkhtmltopdf
wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.10.0_rc2-static-amd64.tar.bz2 mv wkhtmltoimage-0.10.0_rc2-static-amd64.tar.bz2 wkhtmltoimage-0.10.0_rc2-static-amd64.tar tar -xvf wkhtmltopdf-0.10.0_rc2-static-amd64.tar mv wkhtmltoimage-amd64 /usr/bin/wkhtmltopdf测试 wkhtmltopdf http://www.你的域名.com/ 你的域名.pdfphp shell_exec() 执行shell_exec('/usr/local/bin/wkhtmltopdf http://www.你的域名.com/ /usr/local/wwwroot/你的域名.com/你的域名.pdf');
希望本文所述对大家的php程序设计有所帮助。