我尝试使用php脚本使用简单的程序Hello World生成PDF。我遇到了以下错误,我无法理解,有人可以帮忙吗?
SCRIPT
<?php
require('fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>
错误: -
Warning: include(helveticab.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\php\PEAR\fpdf.php on line 541
Warning: include() [function.include]: Failed opening 'helveticab.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\php\PEAR\fpdf.php on line 541
FPDF error: Could not include font metric file
答案 0 :(得分:2)
答案 1 :(得分:2)
我建议你看看TCPDF(http://www.tcpdf.org/),它远比FPDF好,因为它是积极开发的。
例如,在TCPDF中,您可以通过创建字体来添加字体:http://www.tcpdf.org/fonts.php