PHP:
<?
header ("Content-type: image/pjpeg");
$string = "[copyright] 2007";
$im = ImageCreateFromjpeg($imm);
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 255, 255,255);//black text
imagettftext ($im, "12", "0", 10, 20, $text_color, "verdana.ttf", $string);
imageinterlace($im, 1);
imagejpeg($im);
?>








