header ("Content-type: image/JPEG"); $im = imagecreate (400, 400); $black = imagecolorallocate ($im, 0, 0, 0); $white = imagecolorallocate ($im, 255, 255, 255); imagettftext ($im, 20, 0, 10, 20, $white, "/arial.ttf", "TEST"); imageJPEG ($im,$newname,100); imagedestroy ($im);