使用PHP脚本创建pdf A4大小

时间:2011-06-08 14:48:32

标签: php

我尝试使用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

2 个答案:

答案 0 :(得分:2)

确保helveticab.php

中有C:\xampp\php\PEAR文件

我相信你可以在这里下载:http://www.phpclasses.org/browse/file/1412.html

答案 1 :(得分:2)

我建议你看看TCPDF(http://www.tcpdf.org/),它远比FPDF好,因为它是积极开发的。

例如,在TCPDF中,您可以通过创建字体来添加字体:http://www.tcpdf.org/fonts.php