0

我将使用来自两个不同 PDF 的两个不同页面来创建一个 PDF 并结合两个页面。为此,我使用 FPDF 并且我已经这样做了:

$finalPDF  = new Fpdi();
$secondPDF = new Fpdi();

$personalizationPdfPath   = "Path_of_my_first_PDF";
$templatePath             = "Path_of_my_second_PDF";

$finalPDF->setSourceFile($templatePath);
$secondPDF->setSourceFile($personalizationPdfPath);

// Import the first page
$page1 = $pdfFinal->importPage(1, PdfReader\PageBoundaries::MEDIA_BOX);

// Import the second page of second PDF
$page2 = $secondPDF->importPage(2, PdfReader\PageBoundaries::MEDIA_BOX);


// Get the size
$dimension = $finalPDF->getTemplateSize($template_page);

// Add the page
$finalPDF->AddPage($dimension["orientation"], array($dimension["width"], $dimension["height"]));

// Apply the page1 on the finalPDF
$finalPDF->useTemplate($page1, 0, 0, $dimension["width"], $dimension["height"]);

// Apply the page2 on the finalPDF
$finalPDF->useTemplate($page2, 20, 28, $dimension["width"]*0.75, $dimension["height"]*0.75); //error

但是当我运行它时,我有模板不存在错误。如果我把 $page1 而不是 $page2 它工作,两个页面是合并的。第一个 100% 大小和第二个 75% 大小。我不知道为什么 $page2 不起作用。我用 dd(dump die) 来查看两个 $pages 之间的区别,没有什么特别的。

所以我使用另一种方法,将 $page2 转换为图片并使用 AddImage 方法:

$imageFromPDF = "Path_of_my_image.jpg";
$finalPdf->Image($imageFromPDF, 35, 35, $dimension["width"]*0.70, $dimension["height"]*0.70, "JPG");


$pdfFinal->Output("F", "nameOfPdf");

它工作得很好,但质量很差。我读过这个主题,但质量仍然很垃圾。

在这两种方式中,任何人都有一个好的解决方案?谢谢

4

1 回答 1

0

一步一步做。不需要 2 个 FPDI 实例。

$pdf = new Fpdi();

// set the first document as the source
$pdf->setSourceFile($templatePath);
// then import the first page of it
$page1 = $pdf->importPage(1, PdfReader\PageBoundaries::MEDIA_BOX);

// now set the second document as the source
$pdf->setSourceFile($personalizationPdfPath);
// and import the second page of it:
$page2 = $pdf->importPage(2, PdfReader\PageBoundaries::MEDIA_BOX);

// to get the size of an imported page, you need to pass the 
// value returned by importPage() and not an undefined variable 
// such as $template_page!!
$dimensions = $pdf->getTemplateSize($page1); // or $page2?

// Add a page
$pdf->AddPage($dimension["orientation"], $dimension);

// ...now use the imported pages as you want...
// Apply the page1 on the finalPDF
$pdf->useTemplate($page1, 0, 0, $dimension["width"], $dimension["height"]);

// Apply the page2 on the finalPDF
$pdf->useTemplate($page2, 20, 28, $dimension["width"] * 0.75, $dimension["height"] * 0.75);

这些值2028对我来说看起来很奇怪,但这是你使用的。

于 2020-07-07T08:44:40.377 回答