您好,登錄后才能下訂單哦!
php生成pdf文件的需求是不怎么常見的;當(dāng)然也是有的;
既然已經(jīng)整合使用了;那就寫篇博客來講解下吧;
示例項(xiàng)目:http://git.oschina.net/shuaibai123/thinkphp-bjyadmin
一:引入tcpdf
/ThinkPHP/Library/Vendor/Tcpdf
把tcpdf整個(gè)目錄拷到自己的項(xiàng)目中;
二:函數(shù)
/Application/Common/Common/function.php
/** * 生成pdf * @param string $html 需要生成的內(nèi)容 */ function pdf($html='<h2 >hello word</h2>'){ vendor('Tcpdf.tcpdf'); $pdf = new \Tcpdf(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // 設(shè)置打印模式 $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->setPrintHeader(false); // 設(shè)置頁眉顯示的內(nèi)容 $pdf->SetHeaderData('logo.png', 60, 'baijunyao.com', '白俊遙博客', array(0,64,255), array(0,64,128)); // 設(shè)置頁眉字體 $pdf->setHeaderFont(Array('dejavusans', '', '12')); // 頁眉距離頂部的距離 $pdf->SetHeaderMargin('5'); // 是否顯示頁腳 $pdf->setPrintFooter(true); // 設(shè)置頁腳顯示的內(nèi)容 $pdf->setFooterData(array(0,64,0), array(0,64,128)); // 設(shè)置頁腳的字體 $pdf->setFooterFont(Array('dejavusans', '', '10')); // 設(shè)置頁腳距離底部的距離 $pdf->SetFooterMargin('10'); // 設(shè)置默認(rèn)等寬字體 $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED); // 設(shè)置行高 $pdf->setCellHeightRatio(1); // 設(shè)置左、上、右的間距 $pdf->SetMargins('10', '10', '10'); // 設(shè)置是否自動(dòng)分頁 距離底部多少距離時(shí)分頁 $pdf->SetAutoPageBreak(TRUE, '15'); // 設(shè)置圖像比例因子 $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(); // 設(shè)置字體 $pdf->SetFont('stsongstdlight', '', 14, '', true); $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true); $pdf->Output('example_001.pdf', 'I'); }
三:使用方法
好吧;這個(gè)沒什么好說的了;全寫注釋里面了;
更多栗子:/ThinkPHP/Library/Vendor/Tcpdf/examples
需要注明的就是:
可以寫html標(biāo)簽的;比如說是識(shí)別h標(biāo)簽的字體加粗加大效果的;
可以寫style樣式;但是并不能完全支持;
tcpdf的官網(wǎng)需要自帶×××:http://www.tcpdf.org
本文為白俊遙原創(chuàng)文章,轉(zhuǎn)載無需和我聯(lián)系,但請注明來自白俊遙博客http://baijunyao.com
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。