FPDF 错误:本文档(testcopy.pdf)可能使用了 FPDI 附带的免费解析器不支持的压缩技术
我正在运行以下代码并给我这个错误:我使用了另一个名为的pdf,并且工作正常,但它给我带来了错误FPDF error: This document (testcopy.pdf) probably uses a compression technique which is not supported by the free parser shipped with FPDI.
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拆分为两个pdf,并希望在文件附件字段中附加这两个pdf。如何将pdf保存到服务器。FPDF可以实现吗?