Hi, 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.
Hi, 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.
Hi , 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');