我正在使用FPDI在现有的PDF文件中添加内容,该文件已经具有某些内容。一旦添加了内容,现有内容就会移出(PDF文件的长度正在增加)。请帮助我解决这个问题。
$pdf =& new FPDI();
$pdf->AddPage();
$pdf->setSourceFile($filename);
$tplIdx = $pdf->importPage(1);
$pdf->useTemplate($tplIdx, 0, 0, 0, 0, true);
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'My content abc',0,2);
$pdf->Cell(40,10,'My content2 abc',0,2);
$pdfGeneration=$pdf->Output('F',$_SERVER["DOCUMENT_ROOT"].'mypath/newwrited.pdf');
我添加了参数,po
$pdf->AddPage("P", "Letter");