General entity which describes PDF document.
It implements document abstraction with a document level operations.
Class is used to create new PDF document or load existing document. See details in a class constructor description
Class agregates document level properties and entities (pages, bookmarks, document level actions, attachments, form object, etc)
Located in /Pdf.php (line 99)
Request used memory manager
Load PDF document from a file
Create new PDF document from a $source string
Convert date to PDF format (it's close to ASN.1 (Abstract Syntax Notation One) defined in ISO/IEC 8824).
Set user defined memory manager
Creates or loads PDF document.
If $source is null, then it creates a new document.
If $source is a string and $load is false, then it loads document from a binary string.
If $source is a string and $load is true, then it loads document from a file. $revision used to roll back document to specified version (0 - currtent version, 1 - previous version, 2 - ...)
Return the document-level JavaScript or null if there is no JavaScript for this document
Return an associative array containing all the named actions in the PDF.
Named actions (it's always "GoTo" actions) can be used to reference from outside the PDF, ex: 'http://www.something.com/mydocument.pdf#MyAction'
Create page object, attached to the PDF document.
Method signatures:
2. Create new page with a specified pagesize (in default user space units). If $factory is null then it will be created and page must be attached to the document to be included into output. --------------------------------------------------------- new Zend_Pdf_Page(numeric $width, numeric $height); ---------------------------------------------------------
Return return the an associative array with PDF meta information, values may be string, boolean or float.
Returned array could be used directly to access, add, modify or remove document properties.
Standard document properties: Title (must be set for PDF/X documents), Author, Subject, Keywords (comma separated list), Creator (the name of the application, that created document, if it was converted from other format), Trapped (must be true, false or null, can not be null for PDF/X documents)
Render the completed PDF to a string.
If $newSegmentOnly is true, then only appended part of PDF is returned.
Retrive number of revisions.
Rollback document $steps number of revisions.
This method must be invoked before any changes, applied to the document. Otherwise behavior is undefined.
Render PDF document and save it.
If $updateOnly is true, then it only appends new section to the end of file.
Set the document-level JavaScript
Documentation generated on Sun, 27 May 2007 23:26:32 -0700 by phpDocumentor 1.3.2