0

我将 Zend Framework 用于我的项目。我的问题是如何使用 Zend_PDF将像“ hello world ”这样的 html 文本转换为 PDF 文本?

谢谢。

4

1 回答 1

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');
于 2009-08-18T19:24:25.690 回答