2

我想将多个 PDF 文件合并为一个。PDF 文件位于不同的站点,因此应首先将它们下载并合并到一个站点。

我们使用 PHP 和 Codeigniter。有人知道我的问题的解决方案吗?

4

2 回答 2

6

是的。我已经合并了pdf。获取fpdffpdi库并将它们放入 code igniter 第三方文件夹。那么只需阅读 fpdfi 手册并合并文档即可。使用它来设置库

 require_once("application/third_party/fpdf/fpdf.php");//http://www.fpdf.org/
 require_once("application/third_party/fpdi/FPDI_Protection.php");//http://www.setasign.de/products/pdf-php-solutions/fpdi/

那么这段代码应该让您了解它是如何工作的。请注意,为了清楚起见,我已经编辑了其中的部分。此示例流式传输 pdf 文件。您可以轻松地将文件保存在其他位置。

    $files = array(<file full paths here>);

$pdf = new FPDI_Protection();
if ($data->password)
{
    $pdf->setProtection(array(),$data->password);
}
for ($i = 0; $i < count($files); $i++ )
{
    $pagecount = $pdf->setSourceFile($files[$i]);
    for($j = 0; $j < $pagecount ; $j++)
    {
        $tplidx = $pdf->importPage(($j +1), '/MediaBox'); // template index.
        $pdf->addPage('L','A4');// orientation can be P|L
        $pdf->useTemplate($tplidx, 0, 0, 0, 0, TRUE);                   
    }
    unlink($files[$i]); // you may not want to unlink the files!
}

$dt = new DateTime(NULL, new DateTimeZone($data->user->timezone));
    // set the metadata.
$pdf->SetAuthor($data->user->user_name);
$pdf->SetCreator('website name!');
$pdf->SetTitle('PDF, created: '.$dt->format(MYHMRS_DATETIME_FRIENDLY));
$pdf->SetSubject('PDF subject !');
$pdf->SetKeywords('website name!'.", keywords! ".$data->user->user_name);
$output = $pdf->Output('', 'S');
$name = "PDF".'-'.$dt->format('ymd').'.pdf';

$this->output
    ->set_header("Content-Disposition: filename=$name;")
    ->set_content_type('Application/pdf')
    ->set_output($output);

至于从其他网站获取 pdf,首先确保您被允许这样做,然后使用 cURL。(复制网址)。有一个codeigniter 库可以做到这一点,或者您可以使用PHP 库

于 2013-11-08T10:16:39.253 回答
2

参考链接:http: //portfolio.floatbit.com/blog/merge-multiple-pdfs-php-using-shellexec

在此处输入图像描述

PDF Merge 也是一种解决方案

参考链接: http: //pdfmerger.codeplex.com/releases/view/37934

在此处输入图像描述

于 2013-11-08T10:45:48.127 回答