Zend_Pdf-Introduction.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.pdf.introduction">
  4. <!-- @todo review and revise upon completion of refactoring -->
  5. <title>Introduction</title>
  6. <para>
  7. The <classname>Zend_Pdf</classname> component is a <acronym>PDF</acronym> (Portable Document
  8. Format) manipulation engine. It can load, create, modify and save documents. Thus it can
  9. help any <acronym>PHP</acronym> application dynamically create <acronym>PDF</acronym>
  10. documents by modifying existing documents or generating new ones from scratch.
  11. <classname>Zend_Pdf</classname> offers the following features:
  12. <itemizedlist>
  13. <listitem>
  14. <para>
  15. Create a new document or load existing one.
  16. <footnote>
  17. <para>
  18. Loading <acronym>PDF</acronym> V1.4 (Acrobat 5) documents is now
  19. supported.
  20. </para>
  21. </footnote>
  22. </para>
  23. </listitem>
  24. <listitem>
  25. <para>
  26. Retrieve a specified revision of the document.
  27. </para>
  28. </listitem>
  29. <listitem>
  30. <para>
  31. Manipulate pages within a document. Change page order, add new pages, remove
  32. pages from a document.
  33. </para>
  34. </listitem>
  35. <listitem>
  36. <para>
  37. Different drawing primitives (lines, rectangles, polygons, circles, ellipses and
  38. sectors).
  39. </para>
  40. </listitem>
  41. <listitem>
  42. <para>
  43. Text drawing using any of the 14 standard (built-in) fonts or your own custom
  44. TrueType fonts.
  45. </para>
  46. </listitem>
  47. <listitem>
  48. <para>
  49. Rotations.
  50. </para>
  51. </listitem>
  52. <listitem>
  53. <para>
  54. Image drawing.
  55. <footnote>
  56. <para>
  57. JPG, PNG [Up to 8bit per channel+Alpha] and TIFF images are supported.
  58. </para>
  59. </footnote>
  60. </para>
  61. </listitem>
  62. <listitem>
  63. <para>
  64. Incremental <acronym>PDF</acronym> file update.
  65. </para>
  66. </listitem>
  67. </itemizedlist>
  68. </para>
  69. </sect1>
  70. <!--
  71. vim:se ts=4 sw=4 et:
  72. -->