当前位置:首页 > PHP教程 > php应用 > 列表

PHP如何使用mpdf将html页面转换pdf文件?

发布:smiling 来源: PHP粉丝网  添加日期:2022-07-12 09:11:34 浏览: 评论:0 

本文主要需求是将html页面转换为pdf文档

1、安装mpdf工具类 (composer方式)

composer require mpdf/mpdf:8.0.3

2、控制器里调用

  1. <?php 
  2.  
  3.  
  4.  
  5. public function test_pdf(){ 
  6.  
  7.      //$mpdf = new \Mpdf\Mpdf(); 
  8.  
  9.       
  10.  
  11.     $mpdf = new \Mpdf\Mpdf([ 
  12.  
  13.     'mode' => 'UTF-8''format' => 'A4''default_font_size' => 40, 'default_font' => '''margin_left' => 20, 'margin_right' => 20 
  14.  
  15.   ]); 
  16.  
  17.     $mpdf->autoScriptToLang = true;//支持中文设置  
  18.  
  19.     $mpdf->autoLangToFont = true;//支持中文设置  
  20.  
  21.     $mpdf->WriteHTML('<h1>你好啊,世界!hello word</h1><p style="color: blue;fontsize:14px;">http://www.baidu.com</p>'); 
  22.  
  23.     $path = FILE_UPLOAD.date('YmdHis').'_'.mt_rand(1,5).'.pdf';          
  24.  
  25.     $mpdf->Output();//直接在页面显示pdf页面内容  
  26.  
  27.     //$mpdf->Output($path,'f');//保存pdf文件到指定目录   
  28.  
  29. }  
  30.  
  31. ?> 

3、效果如下图

PHP如何使用mpdf将html页面转换pdf文件?

Tags: mpdf html页面转换pdf

分享到: