Ciao
Codice PHP:
header("Content-type: image/png");
$im = @imagecreate(450, 70) or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 255, 14, 91);
imagestring($im, 10, 5, 5, "Ciao \n Come va?", $text_color);
imagepng($im);
imagedestroy($im);
E' possibile aggiure "
" dentro l'immagine ? tipo nl2br, se l'input è textarea... So che è possibile, pero non so come...
Se qualcuno mi potrebbe aiutare...
Grazie ancora.
Ciao
Claudio.