To my understanding, gif is licensed, therefore its
not used in the current gd libraries. I believe the
licensing is up in july of 2004, and the support would
be reimplemented after then, but not 100% positive.
Go head over to the GD website to read more info about
gif.
--- Louie Miranda <[EMAIL PROTECTED]> wrote:
> Im trying to show gif images on a browser, since on
> my work. Not all are
> using Internet explorer on windows. One of my test
> shows on a Mac OS X 10.1
> IE 5.5 the jpeg and png files are not supported and
> only gif images.
>
> I tried this syntax to generate gif files..
>
> --php code--
> $im = ImageCreate(200, 200);
> $white = ImageColorAllocate($im, 0xFF, 0xFF,
> 0xFF);
> $black = ImageColorAllocate($im, 0x00, 0x00,
> 0x00);
> ImageFilledRectangle($im, 50, 50, 150, 150,
> $black);
> header("Content-Type: image/gif");
> ImageGIF($im);
> --php code--
>
> but the browser returns an error on the image..
>
> ("The image http://url cannot be displayed, because
> it contains errors.")
>
> And how would you know that gif is supported? PNG
> and JPEG is shown on
> phpinfo();
>
>
> -- -
> Louie Miranda
> http://www.axishift.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php