TCPDF与FPDI多页(TCPDF and FPDI with multiple pages)

2019-07-18 19:00发布

这看起来像最简单的事情,但我不能得到它的工作。

我需要添加文本多页面PDF的第一页(可以是任何数量的页面)

使用上一两页的PDF此代码(没有for循环,只是用$ PDF - > importPage(2)),我结束了两个页面,但第二页是一个页的重复。 该文本是只写在第一页,这是很好的,但我需要包括在输出PDF的所有页面。 这里是我的代码

// Original file with multiple pages 
$fullPathToFile = 'full/path/to/file.pdf';

class PDF extends FPDI {

    var $_tplIdx;

    function Header() {

        global $fullPathToFile;

        if (is_null($this->_tplIdx)) {

            $this->setSourceFile($fullPathToFile);
            $this->_tplIdx = $this->importPage(1);

        }
        $this->useTemplate($this->_tplIdx);

    }

    function Footer() {}

}

// initiate PDF
$pdf = new PDF();
$pdf->setFontSubsetting(true);


// add a page
$pdf->AddPage();

// The new content
$pdf->SetFont("helvetica", "B", 14);
$pdf->Text(10,10,'Some text here');

// How to get the number of pages of original pdf???
// $numPages = $pdf->getNumPages(???);

// Carry on adding all remaining pages starting from page 2
for($i=2;$i<=$numPages;$i++) {
    // Add another page
    $pdf->AddPage();
    // Do I need to declare the source file here?
    // $pdf->setSourceFile($fullPathToWD);
    $pdf->importPage($i);
}

// Output the file as forced download
$pdf->Output('theNewFile.pdf', 'D');

链接文档

TCPDF类http://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced

FPDI类http://www.setasign.de/support/manuals/fpdi/

FPDF_TPL类http://www.setasign.de/support/manuals/fpdf-tpl/

Answer 1:

解决我的问题...

// Original file with multiple pages 
$fullPathToFile = 'full/path/to/file.pdf';

class PDF extends FPDI {

    var $_tplIdx;

    function Header() {

        global $fullPathToFile;

        if (is_null($this->_tplIdx)) {

            // THIS IS WHERE YOU GET THE NUMBER OF PAGES
            $this->numPages = $this->setSourceFile($fullPathToFile);
            $this->_tplIdx = $this->importPage(1);

        }
        $this->useTemplate($this->_tplIdx);

    }

    function Footer() {}

}

// initiate PDF
$pdf = new PDF();
$pdf->setFontSubsetting(true);


// add a page
$pdf->AddPage();

// The new content
$pdf->SetFont("helvetica", "B", 14);
$pdf->Text(10,10,'Some text here');

// THIS PUTS THE REMAINDER OF THE PAGES IN
if($pdf->numPages>1) {
    for($i=2;$i<=$pdf->numPages;$i++) {
        $pdf->endPage();
        $pdf->_tplIdx = $pdf->importPage($i);
        $pdf->AddPage();
    }
}

// Output the file as forced download
$pdf->Output('theNewFile.pdf', 'D');

您可以通过加入这一行的第一部分得到的页数

$this->numPages = $this->setSourceFile($fullPathToFile);

而看到代码的倒数第二块 - for循环增加了页面的其余部分。

不知道这是应该怎么做? 我在一些地方,这是不甚至有可能达到这个阅读,也该代码是不是在文档提供。 然而,这个工作,希望它可以帮助别人。



Answer 2:

我挣扎着这一点,并试图想出最简单的方法来添加一些文本的多页文档的最后一页。 这里是为我工作的非常简单的代码:

require_once('fpdf/fpdf.php');
require_once('fpdf/fpdi.php');
$pdf = new FPDI();
$fullPathToPDF = '/usr/local/common/my.pdf';
$pageCount = $pdf->setSourceFile($fullPathToPDF);
for ($i = 1; $i <= $pageCount; $i++) {
    $pdf->importPage($i);
    $pdf->AddPage();
    $pdf->useTemplate($i);
}
$pdf->SetFont('Helvetica');
$pdf->SetXY(110, 225);
$pdf->Write(8, 'A complete document imported with FPDI');
$pdf->Output($fullPathToPDF);

只要改变的完整路径,文件到您有一个多页的PDF的位置。



Answer 3:

$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
...
$pdf->SetMargins(10, 10, 10);
$pdf->SetAutoPageBreak(true, 10);
foreach($array as $item)
{
  $pdf->AddPage(); //add new page for new item
  $txt = some_long_long_text;
  $pdf->Write(0, $txt, '', 0, 'C', true);
  $pdf->endPage(); //do end of page
  $pdf->lastPage(); //set cursor at last page, because autopagebreak not do it
}

在例子中,你必须在阵列10名学生,而你需要为每个创建简历。 在考试中,一个简历有三页。 因此,在出u得到PDF文件使用30页,用正确的文本。 SetAutoPageBreak(真,10),而不是在最后一页设置光标,所以你需要使用的功能做手工$pdf->lastPage();



Answer 4:

这些代码不会工作,试试这个:

$pdf = new PDI();
$pdf->AddPage();
$pdf->setSourceFile('zzz.pdf');
$pdf->numPages = $pdf->setSourceFile('zzz.pdf');
$tplIdx = $pdf->importPage(1);
$pdf->useTemplate($tplIdx, 10, 20, 200);
    if($pdf->numPages>1) {
for($i=2;$i<=$pdf->numPages;$i++) {
    $pdf->AddPage();
    $tplIdx = $pdf->importPage($i);
    $pdf->useTemplate($tplIdx, 10, 20, 200);
}
}


文章来源: TCPDF and FPDI with multiple pages
标签: php tcpdf fpdi