我是这个FPDI的新手,请跟我说。我遵循了我在FPDI文档中看到的每条指令,但无济于事。我正在尝试填写表格(它是一种政府表格),这样我就可以更快地支付责任,而不是一遍又一遍地打字或写作。
这是我的index.php
<?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('ftp://ftp.bir.gov.ph/webadmin1/pdf/16992316.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('your file name', 'D');
但是当我运行文件时,它什么也没输出。它根本没有显示任何内容。
感谢您的帮助。