In Php3 i can send an image to the header:
header("Content-type: image/gif");
$im=imagecreatefromgif("blau.gif"); imagegif($im);
I have installed PhP4 and it doesn't work???
GIF support has been removed in PHP4 and later versions of PHP3. I believe it has something todo with patents. /Jeremiah Johnson
Hmmm
Can I send an Pic to the header?? It must give another methode!!
Yes, JPEG and PNG should work as long as you have the GD library compiled into PHP. If you want to send GIFs and have your images already encode in the format you could use fread to pass the data to the browser.
THx it work!!! :-)))