php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12763 No GIF support in this PHP build in
Submitted: 2001-08-15 07:51 UTC Modified: 2001-08-15 07:59 UTC
From: konradkl at packplast dot com dot pl Assigned:
Status: Not a bug Package: GD related
PHP Version: 4.0.5 OS: WIN NT 4.0 sp 6
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: konradkl at packplast dot com dot pl
New email:
PHP Version: OS:

 

 [2001-08-15 07:51 UTC] konradkl at packplast dot com dot pl
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);

?>


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-15 07:59 UTC] cynic@php.net
GIF images are no longer supported in GD. Patent issues.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue May 06 09:01:28 2025 UTC