7

我的任务是修改 PDF 并向其中添加图像,为此我使用了 FPDF 和 FPDI 库.. 其操作代码如下:

<?php
require_once('fpdf.php');
require_once('fpdi.php');

$pdf =& new FPDI();
$pdf->AddPage();

//Set the source PDF file
$pagecount = $pdf->setSourceFile("Completed.pdf");

//Import the first page of the file
$tpl = $pdf->importPage(1);


//Use this page as template
// use the imported page and place it at point 20,30 with a width of 170 mm
$pdf->useTemplate($tpl, 20, 30, 170);

#Print Hello World at the bottom of the page

//Select Arial italic 8
$pdf->SetFont('Arial','',8);
$pdf->SetTextColor(0,0,0);
$pdf->SetXY(90, 160);
//$pdf->Rotate(90);
$pdf->Image('think.jpg',120,240,20,20);
$pdf->Image('think.jpg',120,260,20,20);
//$pdf->Write(0, "Hello World");

$pdf->Output("modified_pdf.pdf", "F");
?>

但是当我得到修改后的pdf时,我会得到非常扭曲的修改过的pdf......其屏幕截图如下:

在此处输入图像描述

原文件如下:

在此处输入图像描述

因此,任何人都可以帮助我使用相同的代码/修改后的代码检索正确的修改后的 PDF 吗?

4

2 回答 2

2

它的 fpdf_tpl.php 文件需要用新的下载更新

于 2011-03-10T11:33:08.787 回答
0

http://www.tcpdf.org/使用 TCPDF 很好...

于 2011-03-10T09:37:11.850 回答