php 未找到类“setassign\Fpdi\FpdfTpl”

x3naxklr  于 2022-12-28  发布在  PHP
关注(0)|答案(2)|浏览(304)

每个人我与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');
abithluo

abithluo1#

您不能使用FPDI编辑PDF!
删除行:

require_once('fpdi/src/Fpdi.php');

......以便给予后面所需的自动加载功能一个机会。

o7jaxewo

o7jaxewo2#

也许与这个确切的问题没有关系,但我在我的Lumen项目中有一个类似的情况...我通过重新销售供应商文件来解决它。我希望如果有人面临类似的情况,我希望这能有所帮助。

相关问题