Zend Framework PDF无法正常工作 - 文档没有页面

时间:2010-12-15 16:39:59

标签: php zend-framework pdf-generation zend-pdf

我的代码非常简单:

header('Content-type: application/pdf');
header("Content-Disposition: attachment; filename=\"tesat.pdf\"");
$pdf1 = new Zend_Pdf();
$p1=$pdf1->newPage(Zend_Pdf_Page::SIZE_A4);
$p1->drawLine(10, 10, 40, 40);
echo $pdf1->render();
die;

我有Acrobat reader v9
ZF v1.11
错误消息:“此文件无法打开,因为它没有页面”
我错过了什么?

2 个答案:

答案 0 :(得分:3)

您必须将页面添加到pdf:

$pdf1->pages[] = $p1; 

这是一个关于Zend_PDF的体面教程 http://devzone.zend.com/article/2525

答案 1 :(得分:2)

要从the manual添加页面,您应该创建页面,对其进行修改,然后将其添加到您的pdf中。

header('Content-type: application/pdf');
header("Content-Disposition: attachment; filename=\"tesat.pdf\"");
$pdf1 = new Zend_Pdf();
$p1 = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
$p1->drawLine(10, 10, 40, 40);
$pdf1->pages[] = $p1;
echo $pdf1->render();

应该有用。