Tengo este codigo que genera un texto en modo grafico:
Código PHP:
header ("Content-type: image/png");
$string = "mi texto";
$font = 4;
$width = ImageFontWidth($font) * strlen($string);
$height = ImageFontHeight($font);
$im = @imagecreate ($width,$height);
$background_color = imagecolorallocate ($im, 255, 255, 255); //white background
$text_color = imagecolorallocate ($im, 0, 0,0);//black text
imagestring ($im, $font, 0, 0, $string, $text_color);
imagepng ($im);
Código PHP:
header("Content-type: image/pjpeg");
$img = "imagenes/imagen.jpg";
$original = imagecreatefromjpeg($img);
ImageJPEG($original);
ImageDestroy($original);
Ahora bien, lo que yo quiero es muy tipico, montar el texto sobre la imagen de forma que quede como una vulgar marca de agua

Muchas gracias de antemano. Saludos