<?php
    Header
("Content-type: image/png");
    
$string $_GET['string'];
    
$fonte 4;
    
$taille StrLen($string);
    
$largeur 2.2 $fonte $taille;
    
$hauteur $fonte;
    
$posx $fonte;
    
$posy 1.25 $fonte;
    
$img imagecreate($largeur$hauteur);
    
$couleurFond ImageColorAllocate($img200200255);
    
$couleurTexte ImageColorAllocate($img00255);
    
ImageFilledRectangle($img00$largeur$hauteur$couleurTexte);
    
ImageFilledRectangle($img22$largeur$hauteur$couleurFond);
    
ImageString($img$fonte$posx$posy$string$couleurTexte);
    
ImagePNG($img);
    
ImageDestroy($img);
?>