• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

tp框架引入tcpdf插件步骤以及TCPD中文乱码的解决方法

php 搞代码 4年前 (2022-01-21) 21次浏览 已收录 0个评论

本篇文章主要讲述的是tp框架引入tcpdf插件步骤以及TCPD中文乱码的解决方法,具有一定的学习价值,有需要的朋友可以看看,希望能够帮助到你。

做项目时用到HTML生成PDF,发现TCPDF插件功能比较适合,因此选择了这款插件具体流程如下:

1.通过Composer下载最新版TCPDF,切换到程序根目录运行如下命令(Windows下DOS命令切换):

composer require tecnickcom/tcpdf

命令成功执行后,TCPDF会被下载到程序根目录中的vendor文件夹,如图:

examples中有60多个典型示例,需要什么功能直接看例子即可,例子对应列表见TCPDF官网:https://tcpdf.org/examples/

2.在控制器中调用TCPDF。

use TCPDF;

3.在方法中直接粘贴官方示例中的代码,成功运行。

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);$pdf->SetCreator(PDF_CREATOR);$pdf->SetAuthor('Nicola Asuni');$pdf->SetTitle('TCPDF Example 001');$pdf->SetSubject('TCPDF Tutorial');$pdf->SetKeywords('TCPDF, PDF, example, test, guide');$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 001', PDF_HEADER_STRING, array(0,64,255), array(0,64,128));$pdf->setFooterData(array(0,64,0), array(0,64,128));$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {    require_once(dirname(__FILE__).'/lang/eng.php');    $pdf->setLanguageArray($l);}$pdf->setFontSubsetting(true);$pdf->SetFont('dejavusans', '', 14, '', true);$pdf->AddPage();$pdf->setTextShadow(array('enabled'=>true, 'depth_w'=>0.2, 'depth_h'=>0.2, 'color'=>array(196,196,196), 'opacity'=>1, 'blend_mode'=>'Normal'));$html = <<<EOD<h1>Welcome to <a href="http://www.tcpdf.org" style="text-decoration:none;background-color:#CC0000;color:black;"> <span style="color:black;">TC</span><span style=&<a>2本文来源gao*daima.com搞@代#码&网6</a><pre>搞gaodaima代码

quot;color:white;">PDF</span> </a>!</h1><i>This is the first example of TCPDF library.</i><p>This text is printed using the <i>writeHTMLCell()</i> method but you can also use: <i>Multicell(), writeHTML(), Write(), Cell() and Text()</i>.</p><p>Please check the source code documentation and other examples for further information.</p><p style="color:#CC0000;">TO IMPROVE AND EXPAND TCPDF I NEED YOUR SUPPORT, PLEASE <a href="http://sourceforge.net/donate/index.php?group_id=128076">MAKE A DONATION!</a></p>EOD;$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);$pdf->Output('example_001.pdf', 'I');

注意事项:

1.因为TCPDF使用定界符的方式输出html等内容,因此上述代码中的$html一直到EOD必须顶格。

2.ThinkPHP要关闭调试模式,不然输出乱码。

TCPD中文乱码的解决方法
最新版本的TCPDF已经支持中文,在生成PDF的方法中显示指定使用中文编码即可。

$pdf->SetFont('stsongstdlight', '', 12);

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:tp框架引入tcpdf插件步骤以及TCPD中文乱码的解决方法

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址