se puede hacer asi?
<?
$img = imagecreatefromgif("imagen.gif"); //Crea la imagen
$negro = imagecolorallocate($img,0,0,0); //Color Negro
$rojo = imagecolorallocate($img,255,0,0); //Color Rojo
$nick= imagestring($img,3,0,0,"el nick",$negro); //Escribe Hola mundo en negro
$texto = imagestring($img,3,10,10,"el texto",$rojo); //Escribe Rodrinete en rojo
?>
pero luego como se mostraria completamente?