Noyoug
Ce script me génère des hiéroglyphes à la place de mon image.
Qqun a-t-il une explication ?
La fonction header me génère aussi un warning.
header ("Content-type: image/jpeg");
$im = imagecreate (50, 100) or die ("Impossible d'initialiser la librairie GD");
$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);
imagejpeg ($im);