Zend_PDF 文本格式

发布于 2024-08-02 09:21:57 字数 110 浏览 6 评论 0原文

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

谢谢。

I use Zend Framework for my project. And my question is how can I convert html text like "helloworld" into PDF text to be the same using Zend_PDF ?

Thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落叶缤纷 2024-08-09 09:21:58

我认为没有像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');

i think there is no automatic convert function like html2pdf. You can set the Font like this :

$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');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文