我正在使用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
如何导入此特定区域?