继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php 使用tcpdf库输出pdf

kala16
关注TA
已关注
手记 260
粉丝 18
获赞 134

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

<?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'); 


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP

热门评论

怎么处理已有的pdf,比如给已有的pdf加水印啥的

查看全部评论