我将使用来自两个不同 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");
它工作得很好,但质量很差。我读过这个主题,但质量仍然很垃圾。
在这两种方式中,任何人都有一个好的解决方案?谢谢