【发布时间】:2009-08-18 17:49:50
【问题描述】:
我在我的项目中使用 Zend 框架。我的问题是如何使用 Zend_PDF 将像 "helloworld" 之类的 html 文本转换为 PDF 文本?
谢谢。
【问题讨论】:
标签: php text formatting zend-pdf
我在我的项目中使用 Zend 框架。我的问题是如何使用 Zend_PDF 将像 "helloworld" 之类的 html 文本转换为 PDF 文本?
谢谢。
【问题讨论】:
标签: php text formatting zend-pdf
我认为没有像 html2pdf 这样的自动转换功能。您可以像这样设置字体:
$font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_COURIER_BOLD);
$pdfPage->setFont($font, 36) // font and size
->drawText('hello', 72, 720, 'UTF-8')
->drawText('world', 72, 650, 'UTF-8');
【讨论】: