jacfev
2010-08-27 11:46:51 UTC
Bonjour,
Avec ce script, l'image ne s'affiche pas.
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 20)
or die("Impossible d'initialiser la bibliothèque GD");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>
//Résultat:
// L'image "http://localhost/test/imagecreate.php" ne peut être affichée car
elle contient des erreurs.
Issu de php.net pourtant
http://fr.php.net/manual/fr/function.imagecreate.php
Où est l'erreur ?
Cordialement
jf.
Avec ce script, l'image ne s'affiche pas.
<?php
header("Content-type: image/png");
$im = @imagecreate(110, 20)
or die("Impossible d'initialiser la bibliothèque GD");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>
//Résultat:
// L'image "http://localhost/test/imagecreate.php" ne peut être affichée car
elle contient des erreurs.
Issu de php.net pourtant
http://fr.php.net/manual/fr/function.imagecreate.php
Où est l'erreur ?
Cordialement
jf.