PHP使用FPDF pdf添加水印中文亂碼問題 pdf合併版本問題

---恢復內容開始---php

require_once('../fpdf/fpdf.php');
require_once('../fpdi/fpdi.php');git

使用此插件 pdf 合併 並添加水印 期間遇到添加水印 中文亂碼問題 github

解決辦法:字體

require ('chinese.php') 基本百度都是這個  均可以解決此問題ui

但我這邊還用到fpdi.php的方法 因此我是將代碼整合到fpdi.php中 spa

重點:.net

    $pdf = new FPDI();  
    //設置字體要在實例化以後就設置 不然會報錯
    $pdf->AddGBFont('simhei','黑體');
    $pdf->SetFont('simhei', '', 13);

參考網頁:插件

https://blog.csdn.net/qq_29238009/article/details/73946978code

https://github.com/DCgithub21/cd_FPDFblog

http://justcoding.iteye.com/blog/2163069

 

fpdi合併時候遇到pdf 版本太高 致使合併不成功  解決辦法:

用php 調用 Ghostscript 組件 https://github.com/ArtifexSoftware/ghostpdl-downloads/releases  Ghostscript 下載地址 

https://stackoverflow.com/questions/4794435/merge-pdf-files-with-php#  參考示例

//調用ghostscript合併pdf方法
function hbpdf_gs($files,$out_file_new3){
    $cmd = "\"C:\\Program Files\\gs\\gs9.25\\bin\\gswin64c.exe\" -q -dNOPAUSE -dBATCH -dCompatibilityLevel=1.4 -sDEVICE=pdfwrite -sOutputFile=".$out_file_new3." ".implode(" ", $files);
    try{
        $result = exec($cmd);
    }catch (Exception $e) {  
        print $e->getMessage();  
        exit();
    }
}
相關文章
相關標籤/搜索