| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect1 id="zend.pdf.create">
- <title>Creating and Loading PDF Documents</title>
- <para>
- The <classname>Zend_Pdf</classname> class represents <acronym>PDF</acronym> documents and
- provides document-level operations.
- </para>
- <para>
- To create a new document, a new <classname>Zend_Pdf</classname> object should first be
- created.
- </para>
- <para>
- <classname>Zend_Pdf</classname> class also provides two static methods to load an existing
- <acronym>PDF</acronym> document. These are the <methodname>Zend_Pdf::load()</methodname> and
- <methodname>Zend_Pdf::parse()</methodname> methods. Both of them return
- <classname>Zend_Pdf</classname> objects as a result or throw an exception if an error
- occurs.
- </para>
- <example id="zend.pdf.create.example-1">
- <title>Create new or load existing PDF document</title>
- <programlisting language="php"><![CDATA[
- ...
- // Create a new PDF document
- $pdf1 = new Zend_Pdf();
- // Load a PDF document from a file
- $pdf2 = Zend_Pdf::load($fileName);
- // Load a PDF document from a string
- $pdf3 = Zend_Pdf::parse($pdfString);
- ...
- ]]></programlisting>
- </example>
- <para>
- The <acronym>PDF</acronym> file format supports incremental document update. Thus each time
- a document is updated, then a new revision of the document is created.
- <classname>Zend_Pdf</classname> component supports the retrieval of a specified revision.
- </para>
- <para>
- A revision can be specified as a second parameter to the
- <methodname>Zend_Pdf::load()</methodname> and <methodname>Zend_Pdf::parse()</methodname>
- methods or requested by calling the <methodname>Zend_Pdf::rollback()</methodname> method.
- <footnote>
- <para>
- <methodname>Zend_Pdf::rollback()</methodname> method must be invoked before any
- changes are applied to the document, otherwise the behavior is not defined.
- </para>
- </footnote>
- call.
- </para>
- <example id="zend.pdf.create.example-2">
- <title>Requesting Specific Revisions of a PDF Document</title>
- <programlisting language="php"><![CDATA[
- ...
- // Load the previous revision of the PDF document
- $pdf1 = Zend_Pdf::load($fileName, 1);
- // Load the previous revision of the PDF document
- $pdf2 = Zend_Pdf::parse($pdfString, 1);
- // Load the first revision of the PDF document
- $pdf3 = Zend_Pdf::load($fileName);
- $revisions = $pdf3->revisions();
- $pdf3->rollback($revisions - 1);
- ...
- ]]></programlisting>
- </example>
- </sect1>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|