我为我的项目使用Zend Framework。我的问题是如何使用Zend_PDF将“ hello world ”等html文本转换为PDF文本?
THX。
答案 0 :(得分:1)
我认为没有像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');