真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

thinkphptcpdf亂碼如何解決

這篇文章主要講解了“thinkphp tcpdf亂碼如何解決”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“thinkphp tcpdf亂碼如何解決”吧!

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供合肥網(wǎng)站建設(shè)、合肥做網(wǎng)站、合肥網(wǎng)站設(shè)計(jì)、合肥網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、合肥企業(yè)網(wǎng)站模板建站服務(wù),十載合肥做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

thinkphp tcpdf亂碼的解決辦法:1、下載插件TCPDF;2、通過“class Pdf extends \app\common\controller\Base{...}”方式使用TCPDF;3、將字體改為“$pdf->SetFont('cid0cs', '', 8)”即可解決亂碼問題。

thinkphp6 生成pdf

下載插件TCPDF

composer 安裝

composer require tecnickcom/tcpdf

官網(wǎng)

https://tcpdf.org/examples/

官網(wǎng)中有許多的例子,可根據(jù)自身的需求選擇

使用TCPDF

SetCreator(PDF_CREATOR);
        $pdf->SetAuthor('Nicola Asuni');
        $pdf->SetTitle('TCPDF Example 001');
        $pdf->SetSubject('TCPDF Tutorial');
        $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
// set default header data
$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));
// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
// set margins
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
// set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
// set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
// set some language-dependent strings (optional)
if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
    require_once(dirname(__FILE__).'/lang/eng.php');
    $pdf->setLanguageArray($l);
}
// ---------------------------------------------------------
// set default font subsetting mode
$pdf->setFontSubsetting(true);
// Set font
// dejavusans is a UTF-8 Unicode font, if you only need to
// print standard ASCII chars, you can use core fonts like
// helvetica or times to reduce file size.
$pdf->SetFont('dejavusans', '', 14, '', true);
// Add a page
// This method has several options, check the source code documentation for more information.
$pdf->AddPage();
// set text shadow effect
$pdf->setTextShadow(array('enabled'=>true, 'depth_w'=>0.2, 'depth_h'=>0.2, 'color'=>array(196,196,196), 'opacity'=>1, 'blend_mode'=>'Normal'));
// Set some content to print
$html = <<Welcome to PDF !
This is the first example of TCPDF library.

This text is printed using the writeHTMLCell() method but you can also use: Multicell(), writeHTML(), Write(), Cell() and Text().

Please check the source code documentation and other examples for further information.

TO IMPROVE AND EXPAND TCPDF I NEED YOUR SUPPORT, PLEASE MAKE A DONATION!

EOD;       // Print text using writeHTMLCell()       $pdf->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, true, '', true);       // ---------------------------------------------------------       // Close and output PDF document       // This method has several options, check the source code documentation for more information.       $pdf->Output('example_001.pdf', 'F');       return  'example_001.pdf';     } }

注意:

  • 因?yàn)門CPDF使用定界符的方式輸出html等內(nèi)容,因此上述代碼中的$html一直到EOD必須頂格。

  • 中文亂碼的問題,將字體改為$pdf->SetFont('cid0cs', '', 8)即可。

前端顯示

 

感謝各位的閱讀,以上就是“thinkphp tcpdf亂碼如何解決”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對thinkphp tcpdf亂碼如何解決這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


分享標(biāo)題:thinkphptcpdf亂碼如何解決
文章源于:http://weahome.cn/article/pjshec.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部