私は既存のPDFファイルを編集するためにFPDIを使用しており、単一ページに最適です。ご覧のとおり、$tplIdx = $pdf->importPage(1);
最初のページを編集しています。6ページのPDFファイルがあり、別のページに2つの変数を追加する必要があります。
可能ですか?どのように?
<?php
require_once('fpdf.php');
require_once('fpdi.php');
// initiate FPDI
$pdf = new FPDI();
// add a page
$pdf->AddPage();
// set the sourcefile
$pdf->setSourceFile('ex.pdf');
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, 10, 10, 200);
// now write some text above the imported page
$pdf->SetFont('Arial');
$pdf->SetTextColor(255,0,0);
$pdf->SetXY(50, 50);
$pdf->Write(0, "Ajay Patel");
$pdf->Output('newpdf1.pdf', 'D');
?>
前もって感謝します !