php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #64499
Patch imagepng_processing revision 2013-03-24 07:12 UTC by dhaliwaljee at gmail dot com

Patch imagepng_processing for GD related Bug #64499

Patch version 2013-03-24 07:12 UTC

Return to Bug #64499 | Download this patch
Patch Revisions:

Developer: dhaliwaljee@gmail.com

        <?php
//       echo phpversion();
         $image = imagecreatetruecolor(200, 400) or die("a");
       $bg = imagecolorallocate($image, 255, 255, 255) or die("d");

        imagestring($image, 12, 10, 100, "Hello", $bg) or die("b");
        header('Content-type: image/png');
imagepng($image) or die("c");
imagedestroy($image);
?>
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu May 02 16:01:29 2024 UTC