search
HomeBackend DevelopmentPHP TutorialTP framework introduces tcpdf plug-in steps and solutions to TCPD Chinese garbled characters

This article mainly talks about the steps to introduce the tcpdf plug-in into the TP framework and the solution to TCPD Chinese garbled characters. It has certain learning value. Friends in need can take a look. I hope it can help you.

When doing projects, I used HTML to generate PDF and found that the TCPDF plug-in function was more suitable, so I chose this plug-in. The specific process is as follows:

1. Download the latest version of TCPDF through Composer and switch to the program Run the following command in the root directory (DOS command switching under Windows):

composer require tecnickcom/tcpdf

After the command is successfully executed, TCPDF will be downloaded to the vendor folder in the program root directory, such as Picture:

There are more than 60 typical examples in examples. For what functions you need, just look at the examples. For the corresponding list of examples, see the TCPDF official website: https://tcpdf.org/examples/

2. Call TCPDF in the controller.

use TCPDF;

3. Paste the code in the official example directly into the method and run successfully.

$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 id="Welcome-nbsp-to-nbsp-a-nbsp-href-http-www-tcpdf-org-nbsp-style-text-decoration-none-background-color-CC-color-black-nbsp-span-nbsp-style-color-black-TC-span-span-nbsp-style-color-white-PDF-span-nbsp-a">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="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, &#39;&#39;, &#39;&#39;, $html, 0, 1, 0, true, &#39;&#39;, true);
$pdf->Output(&#39;example_001.pdf&#39;, &#39;I&#39;);

Notes:

1. Because TCPDF uses delimiters to output html and other content, $html in the above code must be in the same format until EOD.

2. ThinkPHP must turn off the debugging mode, otherwise the output will be garbled.

Solution to TCPD Chinese garbled characters
The latest version of TCPDF already supports Chinese. Just specify the Chinese encoding in the method of generating PDF.

$pdf->SetFont(&#39;stsongstdlight&#39;, &#39;&#39;, 12);

Solution to the problem that TCPDF cannot save Chinese file names

When PHP uses TCPDF to generate PDF files, if the file name is Chinese, it will be directly filtered out. The following is TCPDF Solution to the inability to save Chinese file names:

Open the tcpdf.php file and find the output function, which is about line 7554.

1. Comment the following code, approximately at lines 7565-7568:

if ($dest[0] != &#39;F&#39;) {
    $name = preg_replace(&#39;/[\s]+/&#39;, &#39;_&#39;, $name);
    $name = preg_replace(&#39;/[^a-zA-Z0-9_\.-]/&#39;, &#39;&#39;, $name);
}

2. Search for the method code and replace the following code, approximately at lines 7639, 7670, 7693, and 7718.

header(&#39;Content-Disposition: attachment; filename="&#39;.basename($name).&#39;"&#39;);

Replaced with

header(&#39;Content-Disposition: attachment; filename="&#39;.$name.&#39;"&#39;);

The above codes are in case 'I': (print PDF), case 'D': (download PDF), case 'FD': (save) of this method. to local file) statement.

In this way, when PHP uses TCPDF to generate PDF files, it can be saved as a Chinese name.

Related tutorials: thinkPHP video tutorial

The above is the detailed content of TP framework introduces tcpdf plug-in steps and solutions to TCPD Chinese garbled characters. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:博客园. If there is any infringement, please contact admin@php.cn delete
使用Python和WebDriver实现网页截图并保存为PDF文件使用Python和WebDriver实现网页截图并保存为PDF文件Jul 08, 2023 pm 10:55 PM

使用Python和WebDriver实现网页截图并保存为PDF文件摘要:在Web开发和测试过程中,经常需要对网页进行截图以便进行分析、记录和报告。本文将介绍如何使用Python和WebDriver来实现网页截图,并将截图保存为PDF文件,以方便分享和存档。一、安装与配置SeleniumWebDriver:安装Python:访问Python官网(https:

使用PHP和TCPDF创建水印和背景图片使用PHP和TCPDF创建水印和背景图片May 11, 2023 am 08:37 AM

随着互联网及数字化时代的到来,图片的应用越来越广泛,尤其是一些场合需要为图片添加水印或背景图,以保障信息的安全性和版权保护。此时,我们可以利用PHP语言和TCPDF库来实现图片的加水印和背景图处理,以下就是具体实现方法。一、安装TCPDF库TCPDF是一个开源的PHP类库,用于创建PDF文档,但它也提供了一些工具来创建图片。TCPDF类库的安装相对简单,我们

使用PHP和TCPDF创建条形码和二维码使用PHP和TCPDF创建条形码和二维码May 11, 2023 pm 04:42 PM

条形码和二维码是现代生活中广泛使用的重要工具。它们被广泛应用于各种领域,例如物流、零售、医疗、支付等。本文将介绍如何使用PHP和TCPDF库创建条形码和二维码。一、什么是TCPDF?TCPDF是一个用于生成PDF文档的PHP库。它是免费的、开源的,并且已经被广泛应用于许多项目中。除了生成PDF文档外,TCPDF还提供了创建条形码和二维码的功能。二、如何安装T

如何在CakePHP中使用TCPDF?如何在CakePHP中使用TCPDF?Jun 05, 2023 pm 12:40 PM

CakePHP是一种非常流行的PHP框架,它提供了很多方便的方法来进行Web应用程序的开发。当我们需要在应用程序中生成PDF文件时,TCPDF是一种非常常用的PDF生成库。这篇文章将会介绍如何在CakePHP中使用TCPDF。安装TCPDF首先,我们需要将TCPDF安装在我们的CakePHP项目中。这可以通过几种方式来完成,比如手动将TCPDF复制到项目的v

宝塔部署thinkphp5报错怎么办宝塔部署thinkphp5报错怎么办Dec 19, 2022 am 11:04 AM

宝塔部署thinkphp5报错的解决办法:1、打开宝塔服务器,安装php pathinfo扩展并启用;2、配置“.access”文件,内容为“RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]”;3、在网站管理里面,启用thinkphp的伪静态即可。

html文件如何转换成pdf文件html文件如何转换成pdf文件Apr 02, 2024 pm 02:02 PM

转换方法:1、在线转换工具,如 pdfcrowd 和 online2pdf,无需安装即可快速将 HTML 文件转换成 PDF。2、浏览器插件,如 Chrome 的 HTML 转 PDF 插件,允许直接在浏览器中执行转换。3、专业软件,如 Adobe Acrobat 和 Foxit PhantomPDF,提供更全面的功能,支持快速批量转换和高级输出选项。

thinkphp5 post得不到值怎么办thinkphp5 post得不到值怎么办Dec 06, 2022 am 09:29 AM

thinkphp5 post得不到值是因为TP5是通过strpos函数在Header的content-type值中查找app/json字符串的,其解决办法就是设置Header的content-type值为app/json即可。

使用PHP和TCPDF生成PDF文件使用PHP和TCPDF生成PDF文件May 11, 2023 am 08:27 AM

随着现代化科技的不断进步,PDF已成为普遍使用的文件格式之一。而且,生成PDF文件对于企业和个人来说,也变得越来越常见了。如果想要通过PHP语言生成PDF文件,什么方法是最简单有效的?本文将介绍如何使用PHP和TCPDF库生成PDF文件。一、TCPDF库的介绍TCPDF库是一个开源的PHP库,可以用来生成PDF文件。该库支持一系列Unicode字符集,其中

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor