Séance 9 : Intégration d'image sur DUTAF
//pour chaque produit
<img src="affiche_image.php?image=<?php echo $art['image']; ?>" alt="..." /><?php
header("Content-type: image/jpeg");
$image = imagecreatefromjpeg("votre_repertoire/".$_GET['image']);
$blanc = imagecolorallocate($image, 255, 255, 255);
$font = './COMICATE.TTF'; $texte = '(c)D. Annebicque';
$taillex = imagesx($image);
$tailley = imagesy($image);
imagettftext($image, 24, 0, $taillex-260, $tailley-10, $blanc, $font, $texte);
imagejpeg($image); imagedestroy($image);
?>Last updated
Was this helpful?