次のコードを実行していて、このエラーが発生しています。FPDF error: This document (testcopy.pdf) probably uses a compression technique which is not supported by the free parser shipped with FPDI.
別の名前のpdfを使用test.pdf
しましたが、正常に動作しますが、testcopy.pdf.
これはパーサーの問題だと思います。このエラーを回避するために fpdf で使用できる他のパーサーを知っている人はいますか?
私のコード:
require('fpdf17/fpdf.php');
require('fpdf17/fpdi.php');
// initiate FPDI
$pdf = new FPDI();
while (ob_get_level())
ob_end_clean();
header("Content-Encoding: None", true);
// set the sourcefile
$pagecount = $pdf->setSourceFile('testcopy.pdf');
PDFを2つのPDFに分割し、両方のPDFを添付ファイルフィールドに添付したい.PDFをサーバーに保存する方法. fpdfで可能ですか?