我正在使用 FPDF/FPDI 创建/编辑/存储 pdf 文档。我已经在我的本地服务器(wamp)上尝试过,一切都很好;我可以上传模板,使用 Output() 并将 pdf 保存到正确的文件夹中。
但是当我将代码上传到服务器时,我收到一个 FPDF 错误,说明如下:
FPDF error: Cannot open /home/users/x/y/x/public_html/zamzamtravel/index.php/resources/pdf_templates/a_template.pdf !
我发现错误是从FPDI类的文件pdf_parser.php产生的,具体是:
function pdf_parser($filename) {
$this->filename = $filename;
$this->f = @fopen($this->filename, 'rb');
//error is this
if (!$this->f)
$this->error(sprintf('Cannot open %s !', $filename));
$this->getPDFVersion();
$this->c = new pdf_context($this->f);
// Read xref-Data
$this->xref = array();
$this->pdf_read_xref($this->xref, $this->pdf_find_xref());
// Check for Encryption
$this->getEncryption();
// Read root
$this->pdf_read_root();
}
我为 setSourceFile() 和 Output() 编写路径的方式是使用我最近了解到的服务器文档根目录,而不是 HTTP 路径。我还将模板和生成的 pdf 文件的文件/文件夹权限设置为 775。
我如何写入和保存 pdf 文件:
$pdf = new FPDI('P','mm','A4');
// add a page
$pdf->AddPage();
// set the sourcefile
$pdf->setSourceFile($_SERVER['DOCUMENT_ROOT'] . '/myfolder/index.php/resources/pdf_templates/a_template.pdf');
// import page 1
$tplIdx = $pdf->importPage(1);
$pdf->useTemplate($tplIdx, 1, 1, 210);
// now write some text above the imported page
$pdf->SetFont('Arial');
$pdf->SetTextColor(0,0,0);
// Write the posted variables somewhere in the document
//write a bunch of stuff...
// Output. Make the file name the ID of the person returned from database?
$pdf->Output($_SERVER['DOCUMENT_ROOT'] . '/myfolder/index.php/resources/visa_application_forms/'. $data['full_name'] . "_" . $data['customer_id'] . '.pdf', 'F');
如果有人知道出了什么问题,请帮帮我,已经做了几个小时了。谢谢