Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 Zend Framework 用于我的项目。我的问题是如何使用 Zend_PDF将像“ hello world ”这样的 html 文本转换为 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');