有谁知道用PHP编辑PDF的好方法?最好是开源/零许可证费用方法。:)
我是否正在考虑打开PDF文件,替换PDF中的文本然后写出PDF的修改版本?
我过去使用FPDF以编程方式创建PDF文件,但有时发现它有些笨拙。
Answers:
如果您采用“填空”方法,则可以将文本精确地定位在页面上的任何位置。因此,将丢失的文本添加到文档中相对容易(即使不是那么乏味)。例如,使用Zend Framework:
<?php
require_once 'Zend/Pdf.php';
$pdf = Zend_Pdf::load('blank.pdf');
$page = $pdf->pages[0];
$font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA);
$page->setFont($font, 12);
$page->drawText('Hello world!', 72, 720);
$pdf->save('zend.pdf');
如果您要替换内联内容,例如“ [占位符字符串]”,它将变得更加复杂。尽管从技术上讲是可行的,但您很可能会弄乱页面的布局。
PDF文档由一组基本绘图操作组成:此处的行,此处的图像,此处的文本块等。它不包含有关这些基元的布局意图的任何信息。
有一个免费且易于使用的PDF类来创建PDF文档。它称为FPDF。与FPDI(http://www.setasign.de/products/pdf-php-solutions/fpdi)结合使用,甚至可以编辑PDF文档。以下代码显示了如何使用FPDF和FPDI用用户数据填充现有的礼品券。
require_once('fpdf.php');
require_once('fpdi.php');
$pdf = new FPDI();
$pdf->AddPage();
$pdf->setSourceFile('gift_coupon.pdf');
// import page 1
$tplIdx = $this->pdf->importPage(1);
//use the imported page and place it at point 0,0; calculate width and height
//automaticallay and ajust the page size to the size of the imported page
$this->pdf->useTemplate($tplIdx, 0, 0, 0, 0, true);
// now write some text above the imported page
$this->pdf->SetFont('Arial', '', '13');
$this->pdf->SetTextColor(0,0,0);
//set position in pdf document
$this->pdf->SetXY(20, 20);
//first parameter defines the line height
$this->pdf->Write(0, 'gift code');
//force the browser to download the output
$this->pdf->Output('gift_coupon_generated.pdf', 'D');
"FPDF error: This document (testcopy.pdf) probably uses a compression technique which is not supported by the free parser shipped with FPDI."
任何解决方案?
不知道这是否是一个选项,但它的工作方式与Zend的pdf库非常相似,但是您不需要加载一堆额外的代码(zend框架)。它只是扩展了FPDF。
http://www.setasign.de/products/pdf-php-solutions/fpdi/
在这里,您基本上可以做同样的事情。加载PDF,在其顶部覆盖,然后保存到新的PDF。在FPDI中,您基本上将PDF插入为图像,因此可以将所需的内容放在其上。
但这又使用了FPDF,所以如果您不想使用它,那么它将无法正常工作。
Tcpdf也是在php http://www.tcpdf.org/中生成pdf的很好的图书馆 。
<?php
//getting new instance
$pdfFile = new_pdf();
PDF_open_file($pdfFile, " ");
//document info
pdf_set_info($pdfFile, "Auther", "Ahmed Elbshry");
pdf_set_info($pdfFile, "Creator", "Ahmed Elbshry");
pdf_set_info($pdfFile, "Title", "PDFlib");
pdf_set_info($pdfFile, "Subject", "Using PDFlib");
//starting our page and define the width and highet of the document
pdf_begin_page($pdfFile, 595, 842);
//check if Arial font is found, or exit
if($font = PDF_findfont($pdfFile, "Arial", "winansi", 1)) {
PDF_setfont($pdfFile, $font, 12);
} else {
echo ("Font Not Found!");
PDF_end_page($pdfFile);
PDF_close($pdfFile);
PDF_delete($pdfFile);
exit();
}
//start writing from the point 50,780
PDF_show_xy($pdfFile, "This Text In Arial Font", 50, 780);
PDF_end_page($pdfFile);
PDF_close($pdfFile);
//store the pdf document in $pdf
$pdf = PDF_get_buffer($pdfFile);
//get the len to tell the browser about it
$pdflen = strlen($pdfFile);
//telling the browser about the pdf document
header("Content-type: application/pdf");
header("Content-length: $pdflen");
header("Content-Disposition: inline; filename=phpMade.pdf");
//output the document
print($pdf);
//delete the object
PDF_delete($pdfFile);
?>
pdf_set_info($pdfFile, "Title", "PDFlib");