第 13 章 Zend_Pdf

目录

13.1. Introduction.
13.2. Creating and loading PDF documents.
13.3. Save changes to the PDF document.
13.4. Document pages.
13.5. Drawing.
13.5.1. Geometry.
13.5.2. Colors.
13.5.3. Shape Drawing.
13.5.4. Text Drawing.
13.5.5. Using fonts.
13.5.6. Image Drawing.
13.5.7. Line drawing style.
13.5.8. Fill style.
13.5.9. Rotations.
13.5.10. Save/restore graphics state.
13.5.11. Clipping draw area.
13.5.12. Styles.
13.6. Zend_Pdf module usage example.

13.1. Introduction.

Zend_Pdf module is a PDF (Portable Document Format) manipulation engine written entirely in PHP 5. It can load existing documents, create new, modify and save modified documents. Thus it can help any PHP-driven application dynamically prepare documents in a PDF by modifying existing template or generating document from a scratch. Zend_Pdf module supports the following features:

  • Create new document or load existing one. [1]

  • Retrieving specified revision of the document.

  • Manipulate pages within document. Changing page order, adding new pages, removing pages from a document.

  • Different drawing primitives (lines, rectangles, polygons, circles, ellipses and sectors).

  • Text drawing by using one of 14 standard fonts.

  • Rotations.

  • Image drawing. [2]

  • Incremental PDF file update.



[1] PDF V1.4 (Acrobat 5) documents are supported for loading now.

[2] Only JPG images are supported now.