如何在PHP中添加叠加/标记到PDF文件?

时间:2012-03-14 15:35:33

标签: php pdf

有谁知道如何以编程方式在PHP中为PDF文件添加叠加层或图章?到目前为止,我提出的最好的方法是使用exec命令调用PDFTK库。如果存在,我更喜欢实际的PHP方法。

1 个答案:

答案 0 :(得分:3)

这是一个老问题,但我希望能帮助有人寻找这个答案。

我已经成功使用了FPDF(http://www.fpdf.org),这是一个免费的PHP库。

我已从一个大函数中删除了此代码,请注意我在此处未包含的缺失变量。

        $pdf = new FPDI();

        // Number of pages of the PDF
        $pagecount = $pdf->setSourceFile($source."/".$pdfList[$i]);

        // Loop the PDF's pages
        for($page_index=0; $page_index < $pagecount; $page_index++)
        {

            $tplidx = $pdf->importPage(($page_index+1), '/MediaBox');
            $pdf->addPage();
            $pdf->useTemplate($tplidx);

            // Do I need to stamp this page? This is a boolean flag calculated from the settings for each page.
            $stampThis = false;

            if($settings->pages == 'all') 
            {
                $stampThis = true;
            }
            else if($settings->pages == 'last')
            {
                if($pagecount == $page_index+1)
                {
                    $stampThis = true;
                }
            }
            else if($settings->pages == 'first')
            {
                if($page_index == 0)
                {
                    $stampThis = true;
                }
            }
            else if($settings->pages == 'odd')
            {
                if($page_index%2 == 0)
                {
                    $stampThis = true;
                }
            }
            else if($settings->pages == 'even')
            {
                if($page_index%2 != 0)
                {
                    $stampThis = true;
                }
            }           

            // Stamp the PDF, in case the flag is true
            if($stampThis)
            {
                // Custom stamp
                if(!empty($settings->imageURL)) {

                    $pdf->Image($settings->imageURL, 
                                $settings->stamp_coord_x,
                                $settings->stamp_coord_y);
                }

            } // stamp if end

        } // pages loop end

      $pdf->Output($destination.'/'.$pdfList[$i], 'F');