thinkphp integration series tcpdf class generates pdf files
The need for php to generate pdf files is not very common; of course it does exist;
Now that it has been integrated and used; let’s write a blog to explain it;
Sample project: http://git.oschina.net/shuaibai123/thinkphp-bjyadmin
1: Introduce tcpdf
/ThinkPHP/Library/Vendor/Tcpdf
Copy the entire tcpdf directory to your own project;
2: Function
/Application/Common/Common/function.php/**<code class="prettyprint linenums lang-php">/**<br>
* 生成pdf<br>
* @param string $html 需要生成的内容<br>
*/<br>
function pdf($html='<h1 id="hello-word">hello word</h1>'){<br>
vendor('Tcpdf.tcpdf');<br>
$pdf = new Tcpdf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);<br>
// 设置打印模式<br>
$pdf->SetCreator(PDF_CREATOR);<br>
$pdf->SetAuthor('Nicola Asuni');<br>
$pdf->SetTitle('TCPDF Example 001');<br>
$pdf->SetSubject('TCPDF Tutorial');<br>
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');<br>
// 是否显示页眉<br>
$pdf->setPrintHeader(false);<br>
// 设置页眉显示的内容<br>
$pdf->SetHeaderData('logo.png', 60, 'baijunyao.com', '白俊遥博客', array(0,64,255), array(0,64,128));<br>
// 设置页眉字体<br>
$pdf->setHeaderFont(Array('dejavusans', '', '12'));<br>
// 页眉距离顶部的距离<br>
$pdf->SetHeaderMargin('5');<br>
// 是否显示页脚<br>
$pdf->setPrintFooter(true);<br>
// 设置页脚显示的内容<br>
$pdf->setFooterData(array(0,64,0), array(0,64,128));<br>
// 设置页脚的字体<br>
$pdf->setFooterFont(Array('dejavusans', '', '10'));<br>
// 设置页脚距离底部的距离<br>
$pdf->SetFooterMargin('10');<br>
// 设置默认等宽字体<br>
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);<br>
// 设置行高<br>
$pdf->setCellHeightRatio(1);<br>
// 设置左、上、右的间距<br>
$pdf->SetMargins('10', '10', '10');<br>
// 设置是否自动分页 距离底部多少距离时分页<br>
$pdf->SetAutoPageBreak(TRUE, '15');<br>
// 设置图像比例因子<br>
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);<br>
if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {<br>
require_once(dirname(__FILE__).'/lang/eng.php');<br>
$pdf->setLanguageArray($l);<br>
}<br>
$pdf->setFontSubsetting(true);<br>
$pdf->AddPage();<br>
// 设置字体<br>
$pdf->SetFont('stsongstdlight', '', 14, '', true);<br>
$pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);<br>
$pdf->Output('example_001.pdf', 'I');<br>
}
* Generate pdf
* @param string $html Content to be generated
*/
function pdf($html='
hello word
'){Vendor('Tcpdf.tcpdf');
$pdf = new Tcpdf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
//Set printing mode
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Nicola Asuni');
$pdf->SetTitle('TCPDF Example 001');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
// Whether to display the header $pdf->setPrintHeader(false); //Set the content displayed in the header $pdf->SetHeaderData('logo.png', 60, 'baijunyao.com', 'Bai Junyao Blog', array(0,64,255), array(0,64,128)); // Set header font $pdf->setHeaderFont(Array('dejavusans', '', '12')); // Distance from header to top $pdf->SetHeaderMargin('5'); // Whether to display the footer $pdf->setPrintFooter(true); //Set the content displayed in the footer $pdf->setFooterData(array(0,64,0), array(0,64,128)); // Set footer font $pdf->setFooterFont(Array('dejavusans', '', '10')); // Set the distance between the footer and the bottom $pdf->SetFooterMargin('10'); // Set the default monospaced font $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED); //Set row height $pdf->setCellHeightRatio(1); // Set the left, top and right spacing $pdf->SetMargins('10', '10', '10'); //Set whether to automatically break pages. How far away from the bottom is the page break $pdf->SetAutoPageBreak(TRUE, '15'); //Set image scale factor $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->AddPage(); // Set font $pdf->SetFont('stsongstdlight', '', 14, '', true); $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); $pdf->Output('example_001.pdf', 'I'); }Three: How to use Okay; there’s nothing more to say about this; I’ve written it all in the comments; More chestnuts:/ThinkPHP/Library/Vendor/Tcpdf/examples What needs to be noted is: You can write html tags; for example, it can recognize the font boldness and enlargement effect of h tags; You can write styles; but they are not fully supported; The official website of tcpdf requires you to bring your own ladder: http://www.tcpdf.org

This article is Bai Junyao’s original article. There is no need to contact me for reprinting, but please indicate that it is from Bai Junyao’s blog http://baijunyao.com
Yunqi Conference Beijing Station: It is rare for Alibaba technical experts to appear on the scene. More than 100 people came this time? !

了解Python编程的入门级代码示例Python是一种简单易学,功能强大的编程语言。对于初学者来说,了解Python编程的入门级代码示例是非常重要的。本文将为您提供一些具体的代码示例,帮助您快速入门。打印HelloWorldprint("HelloWorld")这是Python中最简单的代码示例。print()函数用于将指定的内容输出

PHP变量存储程序运行期间的值,对于构建动态且交互式的WEB应用程序至关重要。本文将深入探讨php变量,并通过10个真实的示例展示它们的实际应用。1.存储用户输入$username=$_POST["username"];$passWord=$_POST["password"];此示例从表单提交中提取用户名和密码,并将其存储在变量中以供进一步处理。2.设置配置值$database_host="localhost";$database_username="username";$database_pa

标题:从入门到精通:Go语言中常用数据结构的代码实现数据结构在编程中起着至关重要的作用,它是程序设计的基础。在Go语言中,有许多常用的数据结构,掌握这些数据结构的实现方式对于成为一名优秀的程序员至关重要。本文将介绍Go语言中常用的数据结构,并给出相应的代码示例,帮助读者从入门到精通这些数据结构。1.数组(Array)数组是一种基本的数据结构,是一组相同类型

Java冒泡排序最简单的代码示例冒泡排序是一种常见的排序算法,它的基本思想是通过相邻元素的比较和交换来将待排序序列逐步调整为有序序列。下面是一个简单的Java代码示例,演示了如何实现冒泡排序:publicclassBubbleSort{publicstaticvoidbubbleSort(int[]arr){int

《Go语言编程实例:Web开发中的代码示例》随着互联网的快速发展,Web开发已经成为各行业中必不可少的一部分。作为一门功能强大且性能优越的编程语言,Go语言在Web开发中越来越受到开发者们的青睐。本文将通过具体的代码示例,介绍如何利用Go语言进行Web开发,让读者能够更好地理解和运用Go语言来构建自己的Web应用。1.简单的HTTP服务器首先,让我们从一个

如何使用PHP编写库存管理系统中的库存分仓管理功能代码库存管理是许多企业中不可或缺的一部分。对于拥有多个仓库的企业来说,库存分仓管理功能尤为重要。通过合理管理和跟踪库存,企业可以实现不同仓库之间的库存调拨,优化运营成本,改善协同效率。本文将介绍如何使用PHP编写库存分仓管理功能的代码,并为您提供相关的代码示例。一、建立数据库在开始编写库存分仓管理功能的代码之

Java选择排序法代码编写指南及示例选择排序是一种简单直观的排序算法,其思想是每次从未排序的元素中选择最小(或最大)的元素进行交换,直到所有元素排序完成。本文将提供选择排序的代码编写指南,并附上具体的Java示例代码。算法原理选择排序的基本原理是将待排序数组分为已排序和未排序两部分,每次从未排序部分选择最小(或最大)的元素,将其放到已排序部分的末尾。重复上述

华为云边缘计算对接指南:Java代码示例快速实现接口随着物联网技术的快速发展和边缘计算的兴起,越来越多的企业开始关注边缘计算的应用。华为云提供了边缘计算服务,为企业提供了高可靠的计算资源和便捷的开发环境,使得边缘计算应用更加容易实现。本文将介绍如何通过Java代码快速实现华为云边缘计算的接口。首先,我们需要准备好开发环境。确保你已经安装了Java开发工具包(


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
