4

我正在使用 PHP 库TCPDFFPDI来组合 PDF 文档,并且收到以下错误:

TCPDF 错误:无法在预期位置找到对象 (10, 0)

我有FPDI的商业版本。

该问题似乎只发生在 PDF 版本 1.3 (Acrobat 4.x) 文件中。这是导致错误的文件的文档属性的屏幕截图。http://imagebin.org/215041

我想跳过任何有错误的文件,而不是让脚本死掉。我已经用一个新的类修改了错误处理ErrorIgnoringTCPDF,但是它不起作用。

有任何想法吗?

require_once('../../libraries/tcpdf/tcpdf.php');
require_once('../../libraries/fpdi/fpdi.php');

class ErrorIgnoringTCPDF extends FPDI {

   public function Error($msg) {
       // unset all class variables
       $this->_destroy(true);

       // exit program and print error
       //die('<strong>TCPDF ERROR: </strong>'.$msg);
   }

}

$pdf = new ErrorIgnoringTCPDF();
$pdf->setPrintHeader(false);

$prows = fetch_data($id);

foreach ($prows AS $row) {

    $irows = get_imaged_docs($row['pat_id']);

    foreach($irows AS $irow){

        if ($irow['type'] === 'application/pdf'){

            $doc_id = $irow['id'];

            $content = get_pdf_imaged_docs($doc_id);

            $pagecount = $pdf->setSourceFile($content);

            for ($i = 1; $i <= $pagecount; $i++) {
                 $tplidx = $pdf->ImportPage($i);
                 $s = $pdf->getTemplatesize($tplidx);
                 $pdf->AddPage('P', array($s['w'], $s['h']));
                 $pdf->useTemplate($tplidx);
            }    

        } else {

            $pdf->AddPage();

            $doc  = fetch_document_content($irow['id'], $irow['filename']);
            $img = base64_encode($doc);

            $imgdata = base64_decode($img);

            $pdf->Image('@'.$imgdata);

        }

    }

}

$pdf->Output('documents.pdf', 'D');
4

5 回答 5

8

如果您使用的是 Linux,您可以使用 shell_exec 来组合文件

function combine_pdf($outputName,$fileArray)
{


         $cmd = "gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$outputName ";

         foreach($fileArray as $file)
         {
           $cmd .= $file." ";
         }
         $result = shell_exec($cmd);

 }
于 2014-06-02T09:54:04.370 回答
1

您是否尝试过仅抑制错误?

$pagecount = @$pdf->setSourceFile($content);

if (empty($pagecount))
    continue;  // or whatever you want to do, maybe set $is_invalid = true;
于 2012-06-11T09:56:41.997 回答
0

我不会说这是一个合适/最好的解决方法,但它可能会解决您的问题,

在:pdf_parser.php 中,注释掉以下行:

$this->error("Unable to find object ({$obj_spec[1]}, {$obj_spec[2]}) at expected location");

它应该在 544 行附近。

您可能还需要更换:

    if (!is_array($kids))
        $this->error('Cannot find /Kids in current /Page-Dictionary');

和:

    if (!is_array($kids)){
     //   $this->error('Cannot find /Kids in current /Page-Dictionary');
     return;
    }

在 fpdi_pdf_parser.php 文件中

希望有帮助。它对我有用。

于 2014-05-23T15:07:07.883 回答
0

这只是表明 PDF 文档是错误的。它指向未找到预期对象的特定字节偏移位置。

于 2012-06-04T09:53:35.493 回答
0

我有同样的问题,我正在使用这段代码来解决我的问题。

class convertPDF extends FPDI {

   public function error($msg) {
      throw new Exception($msg); 
   }
   ...other stuff...
}

try {
    $convertPdf = new convertPDF();
} catch(Exception $e) {
    die($e->getMessage);
}

此答案适用于搜索此问题的人。祝你好运!

于 2014-12-16T12:03:17.387 回答