如何使用TCPDF撰写和生成PDF文件
这篇文章主要介绍"如何使用TCPDF撰写和生成PDF文件",在日常操作中,相信很多人在如何使用TCPDF撰写和生成PDF文件问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"如何使用TCPDF撰写和生成PDF文件"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
一、需求
某一个合同需要在线生成,其中一部分内容是固定的,而另一部分内容是需要添加和编辑的。
编辑的部分是表单内容的填写,内容涵盖了:table
input
两个主要的html元素
现在需要在页面编辑完合同之后,生成一份PDF文件保存在本地,同时下载一份文件。
二、选择TCPDF
TCPDF
地址: https://tcpdf.org/
1. 选择的原因
不需要安装其他任何的依赖,这个是我最喜欢用它的原因。
2. 安装
使用 composer 安装即可,在 packagist 的地址是 :https://packagist.org/packages/tecnickcom/tcpdf
作者 tecnickcom 各种和 tcpdf
相关的包都有:https://packagist.org/packages/tecnickcom/
composer require tecnickcom/tcpdf
3. 使用方式
因为是在html上操作,然后生成pdf,所以使用的方式是 writeHtml()
tcpdf
官网很多例子,可以直接用,比如 writeHtml()
就有专门的例子说明:
https://tcpdf.org/examples/example_006/
4. 示例代码
下面的代码中需要注意的地方:
我去掉了一部分的内容,如果你需要,则可以参照官方网站的例子增加
比如我去掉了
页眉
页脚
, 并且页面距
都是 10最终使用的写入方式是
$pdf->writeHtml()
,参数使用推荐的参数即可
// create new PDF document$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);// set document information$pdf->SetCreator(PDF_CREATOR);$pdf->SetAuthor('pdf作者');$pdf->SetTitle('PDF标题');$pdf->setPrintHeader(false);$pdf->setPrintFooter(false);// set default monospaced font$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);// set margins$pdf->SetMargins(10, 10, 10);$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);// set auto page breaks$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);// set image scale factor$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);// Add a page// This method has several options, check the source code documentation for more information.$pdf->AddPage();// set default font subsetting mode$pdf->setFontSubsetting(true);// Set font// dejavusans is a UTF-8 Unicode font, if you only need to// print standard ASCII chars, you can use core fonts like// helvetica or times to reduce file size.$pdf->SetFont('msyh', '', 11, '', true);// set text shadow effect$pdf->setTextShadow(array('enabled'=>false));// Set some content to print$html ='';// Print text using writeHTMLCell()// $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);// output the HTML content$pdf->writeHTML($html, true, false, true, false, '');// reset pointer to the last page$pdf->lastPage();// ---------------------------------------------------------// Close and output PDF document// This method has several options, check the source code documentation for more information.$pdf->Output('example_001.pdf', 'D');//============================================================+// END OF FILE//============================================================+测试生成PDF
AAAA BBBB CCCC
5. 生成结果
三、不可避免的问题
1、 XHTML
需要注意的是,在使用 writeHtml()
的时候,支持的是 XHTML
而非 HTML
,当然 HTML5
更不支持
因此在构建前端页面的html代码的时候,请使用 xhtml
,否则一些内容会失效。
比如:
1) input 表单必须进行闭合
XHTML要求所有单标签必须进行自闭和,而 tcpdf
自然无法识别
像上面 如果 input 按照 html5 标准写是无法认出来的。