Description :
Tout est dans le titre :)
Portion de code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
<? //bouton.php $img = imagecreatefrompng("./fond.png"); $couleurTexte = ImageColorAllocate($img,0,0,0); ImageString($img,3,7,1,$txt,$couleurTexte); header("Content-Type: image/png"); // format PNG ImagePng($img); ?>
<? //index.php echo "<html><body>"; $texte = array("Bonjour","Au revoir","A bientôt"); foreach($texte as $val) { echo "<img src="bouton.php?txt=$val">";} echo "</body></html>"; ?> |
|