Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate PDF file with Zend Framework 2 [closed]

I'm started to learn ZF2 right now and notice that there's no "Zend_Pdf" or similar on zend framework 2...

How can I create pdf on this version of the framework?

Anyone knows a good tutorial?

like image 810
Vinicius Garcia Avatar asked Dec 21 '22 15:12

Vinicius Garcia


1 Answers

Zend Framework 2 has moved many of the old Zend Framework libraries out of the main core and created modules instead. Zend_Pdf is one of the libraries that was moved to a module. You can find them all in the Zend Framework repository on GitHub.

You need the ZendPdf package, just follow the instructions on the page. Documentation is not ready yet simply because it's not a core module. Documentation will probably follow as soon as all bugs are worked out with the core stuff.

Also see the Zend Framework package repository.

like image 102
vascowhite Avatar answered Jan 02 '23 22:01

vascowhite