<?php
header ("Content-type: image/gif");
$im = @ImageCreate (50, 100)
or die ("Cannot Initialize new GD image stream");
$background_color = ImageColorAllocate ($im, 255, 255, 255);
$text_color = ImageColorAllocate ($im, 233, 14, 91);
ImageString ($im, 1, 5, 5, "A Simple Text String", $text_color);
Imagegif ($im);
?>
This code creates an Image with a x inside...
I thing that means that it doesn`t find the image...
Please help me.
Thanx