Ihsanullah khan
Ihsanullah khan

Reputation: 771

How to create PDFs using zend framework?

I have some data in a text area and there is a link 'create PDF'. When a user click 'create PDF' link, the data should be printed on an PDF and download window of browser should appear to download that PDF. Any Idea ?

Thanks

Upvotes: 0

Views: 1037

Answers (2)

ZhukovRA
ZhukovRA

Reputation: 506

Use Zend PDF class (tutorial) and POST data.

Upvotes: 1

Pekka
Pekka

Reputation: 449783

Hmm... Zend and PDF.

Maybe Zend_PDF is the thing for you? :)

The Zend_Pdf component is a PDF (Portable Document Format) manipulation engine. It can load, create, modify and save documents. Thus it can help any PHP application dynamically create PDF documents by modifying existing documents or generating new ones from scratch.

Upvotes: 4

Related Questions