Date: 02/28/99
- Next message: steffann: "[PHP-DEV] CVS update: php3"
- Previous message: steffann: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sunday February 28, 1999 @ 18:03
Author: steffann
Update of /repository/php3/doc/functions
In directory asf:/u/temp/cvs-serv15013/doc/functions
Modified Files:
pdf.sgml
Log Message:
Added PDF_put_image and PDF_execute_image functions
Added docs for PDF_put_image and PDF_execute_image
Index: php3/doc/functions/pdf.sgml
diff -c php3/doc/functions/pdf.sgml:1.16 php3/doc/functions/pdf.sgml:1.17
*** php3/doc/functions/pdf.sgml:1.16 Wed Feb 10 05:47:17 1999
--- php3/doc/functions/pdf.sgml Sun Feb 28 18:03:50 1999
***************
*** 1462,1467 ****
--- 1462,1513 ----
</refsect1>
</refentry>
+ <refentry id="function.pdf-put-image">
+ <refnamediv>
+ <refname>PDF_put_image</refname>
+ <refpurpose>Stores an image in the PDF for later use</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>void <function>pdf_put_image</function></funcdef>
+ <paramdef>int <parameter>pdf document</parameter></paramdef>
+ <paramdef>int <parameter>image</parameter></paramdef>
+ </funcsynopsis>
+ <para>
+ The PDF_put_image function places an image
+ in the PDF file without showing it. The stored image can be
+ displayed with the <function>PDF_execute_image</function>
+ function. This is useful when using the same image multiple
+ times.
+ </refsect1>
+ </refentry>
+
+ <refentry id="function.pdf-execute-image">
+ <refnamediv>
+ <refname>PDF_execute_image</refname>
+ <refpurpose>Places a stored image on the page</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>void <function>pdf_execute_image</function></funcdef>
+ <paramdef>int <parameter>pdf document</parameter></paramdef>
+ <paramdef>int <parameter>image</parameter></paramdef>
+ <paramdef>double <parameter>x-coor</parameter></paramdef>
+ <paramdef>double <parameter>y-coor</parameter></paramdef>
+ <paramdef>double <parameter>scale</parameter></paramdef>
+ </funcsynopsis>
+ <para>
+ The PDF_execute_image function displays an image that has been
+ put in the PDF file with the <function>PDF_put_image</function>
+ function on the current page at the given coordinates.
+ <para>
+ The image can be scaled while displaying it. A scale of 1.0
+ will show the image in the original size.
+ </refsect1>
+ </refentry>
+
</reference>
<!-- Keep this comment at the end of the file
-- PHP Development Mailing List http://www.php.net/ To unsubscribe send an empty message to php-dev-unsubscribe <email protected> For help: php-dev-help <email protected>
- Next message: steffann: "[PHP-DEV] CVS update: php3"
- Previous message: steffann: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

