Je me suis battu contre php4 et j'ai perdu. Du coup, dépité par cette
demi-heure où le site ne fonctionnait plus DU TOUT, je suis revenu à php3
avec la ferme intention de ne pas avoir tout perdu : j'ai donc réussi à
installer la librairie gd. Bref, on peut créer des images à la volée avec
les instructions ad hoc. (cf par exemple
http://www.monde-diplomatique.fr/SSI/image.php?GOLAN ) qui marque GOLAN sur
un fichier graphique pré-existant ;
Le code est le suivant :
<?
Header("Content-Type: image/gif");
$string=implode($argv," ");
$myimage = ImageCreateFromGif("/www/monde-diplomatique/cartes/golanp.gif");
$black = ImageColorAllocate($myimage, 0, 0, 0);
$width = (imagesx($myimage)-7.5*strlen($string))/2;
ImageString($myimage, 1, $width, 20, $string, $black);
ImageGif($myimage);
ImageDestroy($myimage);
?>