viewing paste Unknown #16009 | PHP

Posted on the
1 2 3 4 5 6 7 8 9 10
<?php
 
    $image = imagecreatefrompng("header.png"); // Image de fond
    $couleur = imagecolorallocate($image, 42, 141, 208); // Couleur du texte
    imagestring($image, 5, 214, 39, "$data[0]", $couleur); // Génération de l'image avec le texte
 
    header('Content-type: image/png');
    imagepng($image); // Envoie de l'image
 
?>
Viewed 593 times, submitted by Guest.