|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch imagepng_processing for GD related Bug #64499Patch version 2013-03-24 07:12 UTC Return to Bug #64499 | Download this patchPatch 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);
?>
|
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 12:00:02 2025 UTC |