Dynamically added a watermark from a font. Works fine but the image quality isn't so good.
$image = imagecreatefromjpeg("pics/$dir/$filename");
$color = ImageColorAllocate($image, 30, 10, 195);
ImageTTFText ($image, 13, 0, 5, 16, $color, "fbsbltc.ttf", "DJBryson.com");
imagejpeg($image);
imagedestroy($image);