I want to create a PDF file using zend_pdf. But this way seems not efficient at all because I need to define the exact text location :(

$page->drawText(""Some text", $x, $y);

Is there any easier way to print text?

有帮助吗?

解决方案

As far as I know I don't think that there is an easy way to print a PDF with Zend_Pdf because you have to position everything.

For printing PDF in PHP, I always used TCPDF and converted HTML to PDF with great results. Unless you are forced to use Zend_Pdf I think you should avoid it. (I used the 1.11 version so things might change).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top