php 使用tcpdf库输出pdf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用tcpdf库输出pdf相关的知识,希望对你有一定的参考价值。

试了几种其他的插件,总是搞不定编码问题,用这个成功了

<?php

require_once(‘./tcpdf/tcpdf.php‘); //引入库文件


//实例化 

$pdf = new TCPDF(‘P‘, ‘mm‘, ‘A4‘, true, ‘UTF-8‘, false); 

 

// 设置文档信息 

$pdf->SetCreator(‘Helloweba‘); 

$pdf->SetAuthor(‘yueguangguang‘); 

$pdf->SetTitle(‘Welcome to helloweba.com!‘); 

$pdf->SetSubject(‘TCPDF Tutorial‘); 

$pdf->SetKeywords(‘TCPDF, PDF, PHP‘); 

 

// 设置页眉和页脚信息 

$pdf->SetHeaderData(‘‘, 30, ‘测试‘, ‘报名表‘,  

      array(0,64,255), array(0,64,128)); 

$pdf->setFooterData(array(0,64,0), array(0,64,128)); 

 

// 设置页眉和页脚字体 

$pdf->setHeaderFont(Array(‘stsongstdlight‘, ‘‘, ‘10‘)); 

$pdf->setFooterFont(Array(‘helvetica‘, ‘‘, ‘8‘)); 

 

// 设置默认等宽字体 

$pdf->SetDefaultMonospacedFont(‘courier‘); 

 

// 设置间距 

$pdf->SetMargins(15, 27, 15); 

$pdf->SetHeaderMargin(5); 

$pdf->SetFooterMargin(10); 

 

// 设置分页 

$pdf->SetAutoPageBreak(TRUE, 25); 

 

// set image scale factor 

$pdf->setImageScale(1.25); 

 

// set default font subsetting mode 

$pdf->setFontSubsetting(true); 

 

//设置字体 

$pdf->SetFont(‘stsongstdlight‘, ‘‘, 14); 

 

$pdf->AddPage(); 

$one=array("test1","test2","中文测试");//这里可以在数据库取数据

$html = <<<EOD

<table border="1">

  <tr>

    <th >one</th>

    <th>two</th>

    <th>三</th>

  </tr>

  <tr>

    <td>$one[0]</td>

    <td>$one[1]</td>

    <td>$one[2]</td>

  </tr>

</table>

EOD;

$pdf->writeHTMLCell(0, 0, ‘‘, ‘‘, $html, 0, 1, 0, true, ‘‘, true);

//$pdf->Write(0,$html,‘‘, 0, ‘L‘, true, 0, false, false, 0); 

//$pdf->Write(0,$str1,‘‘, 0, ‘L‘, true, 0, false, false, 0); 

 

//输出PDF

$pdf->Output(‘report.pdf‘, ‘I‘); 


本文出自 “IT技术” 博客,请务必保留此出处http://linuxubuntu.blog.51cto.com/4964714/1783084

以上是关于php 使用tcpdf库输出pdf的主要内容,如果未能解决你的问题,请参考以下文章

php tcpdf怎么使用中文乱码

使用TCPDF插件生成pdf以及pdf的中文处理

使用PHP生成PDF文档

TCPDF ERROR: 一些数据已经输出,不能发送 PDF 文件

tcpdf - 从现有的 PDF 文档开始

使用 FPDI 加载到 TCPDF 时调整 PDF 大小