fpdi - 向现有pdf添加内容,但现有内容正在移出

时间:2016-11-23 09:28:07

标签: php pdf fpdf fpdi

我正在使用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');

1 个答案:

答案 0 :(得分:0)

我添加了参数po




  $ pdf-> AddPage(“P”,“Letter”);