每个人我与fpdf和fpdi一起工作,是我的第一个工作,我有一个问题。我不能编辑一个pdf。这是问题。谢谢
在C:\wamp\www\Ale\fpdi\src\Fpdi.php
中找不到类setasign\Fpdi\FpdfTpl
use setasign\Fpdi\Fpdi;
require_once('fpdf/fpdf.php');
require_once('fpdi/src/Fpdi.php');
require_once('fpdi/src/autoload.php');
// initiate FPDI
$pdf = new Fpdi();
// add a page
$pdf->AddPage();
// set the source file
$pdf->setSourceFile('documento.pdf');
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at position 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, 10, 10, 100);
// now write some text above the imported page
$pdf->SetFont('Helvetica');
$pdf->SetTextColor(255, 0, 0);
$pdf->SetXY(30, 30);
$pdf->Write(0, 'This is just a simple text');
$pdf->Output('newDoc.pdf','F');
2条答案
按热度按时间abithluo1#
您不能使用FPDI编辑PDF!
删除行:
......以便给予后面所需的自动加载功能一个机会。
o7jaxewo2#
也许与这个确切的问题没有关系,但我在我的Lumen项目中有一个类似的情况...我通过重新销售供应商文件来解决它。我希望如果有人面临类似的情况,我希望这能有所帮助。