[PHPDOC] cvs: phpdoc /de/functions/ cpdf.xml pdf.xml From: Uwe Steinmann (Uwe.Steinmann <email protected>)
Date: 05/26/00

steinm Thu May 25 23:27:46 2000 EDT

  Modified files:
    /phpdoc/de/functions cpdf.xml pdf.xml
  Log:
  - Added german docs for cpdf_newpath() and pdf_open_png()
  
  
Index: phpdoc/de/functions/cpdf.xml
diff -u phpdoc/de/functions/cpdf.xml:1.5 phpdoc/de/functions/cpdf.xml:1.6
--- phpdoc/de/functions/cpdf.xml:1.5 Tue May 23 09:39:26 2000
+++ phpdoc/de/functions/cpdf.xml Thu May 25 23:27:46 2000
@@ -1151,6 +1151,30 @@
    </refsect1>
   </refentry>
 
+ <refentry id="function.cpdf-newpath">
+ <refnamediv>
+ <refname>cpdf_newpath</refname>
+ <refpurpose>
+ Startet einen neuen Pfad
+ </refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Beschreibung</title>
+ <funcsynopsis>
+ <funcdef>void
+ <function>cpdf_newpath</function>
+ </funcdef>
+ <paramdef>int
+ <parameter>pdf Dokument</parameter>
+ </paramdef>
+ </funcsynopsis>
+ <para>
+ Die Funktion <function>cpdf_newpath</function> startet einen neuen
+ Pfad in dem angegebenen <parameter>pdf Dokument</parameter>.
+ </para>
+ </refsect1>
+ </refentry>
+
   <refentry id="function.cpdf-moveto">
    <refnamediv>
     <refname>cpdf_moveto</refname>
Index: phpdoc/de/functions/pdf.xml
diff -u phpdoc/de/functions/pdf.xml:1.12 phpdoc/de/functions/pdf.xml:1.13
--- phpdoc/de/functions/pdf.xml:1.12 Thu May 11 21:57:29 2000
+++ phpdoc/de/functions/pdf.xml Thu May 25 23:27:46 2000
@@ -1988,7 +1988,7 @@
      Die Funktion liefert ein PDF-Bild zurück.
 
      <example>
- <title>Including a gif image</title>
+ <title>Einbinden eines GIF Bildes</title>
       <programlisting>
 &lt;?php
 $im = PDF_open_gif($pdf, "test.gif");
@@ -2001,6 +2001,7 @@
     <para>
      Siehe auch <function>PDF_close_image</function>,
               <function>PDF_open_jpeg</function>,
+ <function>PDF_open_png</function>,
               <function>PDF_open_memory_image</function>,
               <function>PDF_execute_image</function>,
               <function>PDF_place_image</function>,
@@ -2008,6 +2009,45 @@
    </refsect1>
   </refentry>
 
+ <refentry id="function.pdf-open-png">
+ <refnamediv>
+ <refname>PDF_open_png</refname>
+ <refpurpose>Öffnet ein PNG-Bild</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Beschreibung</title>
+ <funcsynopsis>
+ <funcdef>int <function>pdf_open_png</function></funcdef>
+ <paramdef>int <parameter>PDF-Dokument</parameter></paramdef>
+ <paramdef>string <parameter>Dateiname</parameter></paramdef>
+ </funcsynopsis>
+ <para>
+ Die Funktion <function>PDF_open_png</function> öffnet ein Bild im
+ PNG-Format, das in der Datei <parameter>Dateiname</parameter> gespeichert
+ ist.
+ Die Funktion liefert ein PDF-Bild zurück.
+
+ <example>
+ <title>Einbinden eines PNG Bildes</title>
+ <programlisting>
+&lt;?php
+$im = PDF_open_gif($pdf, "test.png");
+pdf_place_image($pdf, $im, 100, 100, 1);
+pdf_close_image($pdf, $im);
+?>
+ </programlisting>
+ </example></para>
+
+ <para>
+ Siehe auch <function>PDF_close_image</function>,
+ <function>PDF_open_jpeg</function>,
+ <function>PDF_open_gif</function>,
+ <function>PDF_open_memory_image</function>,
+ <function>PDF_execute_image</function>,
+ <function>PDF_place_image</function>,
+ <function>PDF_put_image</function>.</para>
+ </refsect1>
+ </refentry>
   <refentry id="function.pdf-open-memory-image">
    <refnamediv>
     <refname>PDF_open_memory_image</refname>