[PHP-DOC] cvs: phpdoc /en/features images.xml From: James Moore (James <email protected>)
Date: 10/14/00

jmoore Sat Oct 14 06:15:51 2000 EDT

  Modified files:
    /phpdoc/en/features images.xml
  Log:
  Missed a few
  
  
Index: phpdoc/en/features/images.xml
diff -u phpdoc/en/features/images.xml:1.4 phpdoc/en/features/images.xml:1.5
--- phpdoc/en/features/images.xml:1.4 Sat Oct 14 06:08:07 2000
+++ phpdoc/en/features/images.xml Sat Oct 14 06:15:51 2000
@@ -14,10 +14,10 @@
 
   <para>
    <example>
- <title>GIF creation with PHP</title>
+ <title>PNG creation with PHP</title>
     <programlisting role="php">
 &lt;?php
- Header("Content-type: image/gif");
+ Header("Content-type: image/png");
     $string=implode($argv," ");
     $im = imageCreateFromPng("images/button1.png");
     $orange = ImageColorAllocate($im, 220, 210, 60);
@@ -32,7 +32,7 @@
    This example would be called from a page with a tag like: &lt;img
    src=&quot;button.php?text&quot;&gt; The above button.php script
    then takes this &quot;text&quot; string an overlays it on top of a
- base image which in this case is &quot;images/button1.gif&quot;
+ base image which in this case is &quot;images/button1.png&quot;
    and outputs the resulting image. This is a very convenient way to
    avoid having to draw new button images every time you want to
    change the text of a button. With this method they are