I have script like this:
Header("Content-type: image/png");
$im = ImageCreate(400,100) or die("Cant create image");
$orange = ImageColorAllocate($im, 220, 210, 60);
ImageString($im,3,10,10,$string,$orange);
ImagePNG($im) or die("Can't display image");
but it does not display the image. I think that I have gd libraries
installed (parser does not display that ImageCreate is unknown function and
message "Can't create image" does not appear). And "Can't display image"
appears.
Could you please help me?