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');