我正在通过使用 FPDI 从现有 PDF 导入来创建新的 PDF 文件。
$pdf->AddPage();
$pdf->setSourceFile("original.pdf");
$tplIdx = $pdf->importPage(1);
如何将现有 PDF 中的特定区域导入到我正在创建的新 PDF 中?
我有变量,例如:
$x=5; //My desired box begins 5cm from the left
$y=4; // ...and 4cm from the top
$w=4; // ...and is 4cm wide
$h=5; // ...and 5cm in height
如何导入此特定区域?