当前位置:网站首页>php 生成pdf 图片转pdf
php 生成pdf 图片转pdf
2022-08-07 01:00:00 【代码就是bug】
php 生成pdf的方法有很多种,我用的是mpdf,这个是将html转为网页,适合有前端经验的。
安装
使用composer安装
composer require mpdf/mpdf
生成简单的pdf
//实例化mpdf
$mpdf = new \Mpdf\Mpdf([ 'mode' => 'UTF-8', 'format' => 'A4', 'default_font_size' => 40, 'default_font' => '', 'margin_left' => 20, 'margin_right' => 20]);//utf-8
//$mpdf->SetAutoFont(AUTOFONT_ALL);//使用6.0以上版本不需要
//获取要生成的静态文件
// 支持中文
$mpdf->useAdobeCJK = true;
$mpdf->autoScriptToLang = true;
$mpdf->autoLangToFont = true;
//设置pdf显示方式
$mpdf->SetDisplayMode('fullpage');
//设置pdf的尺寸为270mm*397mm
//$mpdf->WriteHTML('<pagebreak sheet-size="270mm 397mm" />');
$time = "2022-8-1";
$html1 = "
<h2 style='text-align: center;font-size: 28px'>标题<h2>
<h4 style='text-align: center;font-size: 20px'>——副标题</h4>
<diV style='font-size: 14px;text-align: left'>报告时间:2022-01-02</diV>
<diV style='font-size: 14px;text-align: left'>报告地点</diV>
<img style='width:400px;height:350px;margin: 0;padding: 0;text-align: center' src='http://sanshi-file.oss-accelerate.aliyuncs.com//uploads/20220718/3bb9164bd8acc75af03d3d9391b05b62.png' >
“
$mpdf->WriteHTML($html1);
$file_path = ROOT_PATH . 'public/uploadpdf/' . Date('Ymd');//保存路径
//如果不存在此目录,则创建此目录
if (!is_dir($file_path)) {
mkdir($file_path, 0777, true);
}
$Name = '123.pdf'; //文件名
$fileName = $file_path . '/' . $Name; //文件路径+名字
//输出pdf
$mpdf->Output($fileName); //可以写成下载此pdf $mpdf->Output('文件名','D');
边栏推荐
- 2022起重机械指挥考试模拟100题及在线模拟考试
- 电话订货、线下赊账、人工打单,批发生意越做越简单
- 在线问题反馈模块实战(二十一):完结篇
- Pyhton知识点6——列表
- TIDB-PD-RECOVER的恢复方式
- class AnchorGenerator:def generate_anchors测试
- Mysql 45讲学习笔记(二十八)读写分离
- azkaban
- Positive and negative (polarity) detection case of components
- Go-Excelize API源码阅读(九)——SetSheetBackground(sheet, picture string)
猜你喜欢

ECCV 2022 Oral | 无需微调即可泛化!RegAD:少样本异常检测新框架

Web version MC server construction + localization

What is the best book to read for self-study software testing?

关闭Win10自动更新

Multiple Dockets with the same group name are not supported.The following duplicate groups were disc

普林斯顿微积分读本04第三章--极限导论

cartography在机器人上运行建图与定位

Ftrace function graph简介

在 C# 中如何检查参数是否为 null

2022年电工(初级)特种作业证考试题库及模拟考试
随机推荐
黑马2022最新redis课程笔记知识点(面试用)持续更新
Vi learning (2) the common commands include move cursor/highlight the text/undo and the undo/delete/copy and paste the text/find replacement/insert 】
Qt QDir相关笔记
2022年电工(初级)特种作业证考试题库及模拟考试
cartography在机器人上运行建图与定位
iNeRF:用于姿态估计的反向神经辐射场(IROS 2021)
按钮点击时动画
著名的 P=NP 问题到底是什么?
ECCV2022 | FPN错位对齐,实现高效半监督目标检测 (PseCo)
国内Api行业,可以内卷到什么程度?
gorm 无法更新带有外键的字段
实时图计算如何进行风控决策管理?
【Koltin Flow(四)】Flow背压
蒸馏学习框架小抄(1)
Vi learning (3) the split screen command 】 to be perfect
2022.8.4 Mock Competition
连接 MySQL 报错:2059 - authentication plugin ‘caching_sha2_password‘ cannot be loaded...
TinyMCE禁用转义
2022危险化学品经营单位安全管理人员考试题模拟考试题库及模拟考试
logcat: Solution for Unexpected EOF!