1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <?php
// Code html
$code = "<a href="lien.php" title="test">Test</a>";
// Définition du content-type
header("Content-type: image/png");
// Création de l'image
$im = imagecreatetruecolor(400, 30);
// Création de quelques couleurs
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// Remplacez le chemin par votre propre chemin de police
$font = 'arial.ttf';
// Ajout du code
imagettftext($im, 20, 0, 10, 20, $black, $font, $code);
// Utiliser imagepng() donnera un texte plus claire,
// comparé à l'utilisation de la fonction imagejpeg()
imagepng($im);
imagedestroy($im);
?> |
Partager