我想在我的本地主机中设置 FPDI,但它给了我一个错误。
Fatal error: Class 'FPDF' not found in C:\wamp\www\book\fpdf_tpl.php on line 20
这就是我所做的:
我去下载页面,我下载了 2 个包(FPDF_TPL 和 FPDI)并将它们解压缩到我的本地主机中。
然后我做了一个示例页面:
<?php
require_once('fpdf.php');
require_once('fpdi.php');
// initiate FPDI
$pdf = new FPDI();
// add a page
$pdf->AddPage();
// set the source file
$pdf->setSourceFile("PdfDocument.pdf");
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 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();
我按照网站上说的做了,但我遇到了一个错误:
Fatal error: Class 'FPDF' not found in C:\wamp\www\book\fpdf_tpl.php on line 20
我已经搜索了错误代码,但我无法弄清楚。
有没有人有 FPDI 经验?