ok, i have copied all files of the gd.library 1.8.4 in the same directory, like it was recommended in the install-guide.
and i have added the line
include("gd/gd.c");
to my php-code. but it still doesn't work.
I have still the x, when i want to generate this code:
<? header ("Content-type: image/png");
include ("gd/gd-1.8.4/gd.c");
$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);
ImagePng ($im);
?>