ID: 12763
Updated by: cynic
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: GD related
Operating System: WIN NT 4.0 sp 6
PHP Version: 4.0.5
New Comment:

GIF images are no longer supported in GD. Patent issues.

Previous Comments:
------------------------------------------------------------------------

[2001-08-15 07:51:27] [EMAIL PROTECTED]

I have iis and instal php 4.0.5
When I run my php flle my ie5 print me:

"ImageGif: No GIF support in this PHP build in "
What is a problem?

Your Konrad


<?

Header ("Content-type: image/gif");

dl("extensions/php_gd.dll");
$img = ImageCreate (250 ,250);
$czarny = Imagecolorallocate($img, 0, 0, 0);
$bialy = Imagecolorallocate($img, 225, 225, 225);
imagefill ($img, 0, 0, $czarny);
imageline ($img, 0, 0, 250, 250, $bialy);
imageline ($img, 250, 0, 0, 250, $bialy);
Imagegif ($img);
imagedestroy ($img);

?>



------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=12763&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to