il codice della pagina è questo:

<?

header("Content-type: image/Png");
$im = ImageCreate(100,20);

$red = ImageColorAllocate($im,255,0,0);
$white = ImageColorAllocate($im,255,255,255);

ImageString($im,3,3,3,"YES!",$white);
ImageGif($im);

ImageDestroy($im);

?>

l'errore che mi da è questo:

The image “http://xxx.xxx.x.x/private/prova/immagine.php” cannot be displayed, because it contains errors.

ho provato anche ad installare librerie aggiuntive di gd ma non è cambiato nulla...