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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 17:01:30 2024 UTC