header ("Content-type: image/png"); $img = imagecreatetruecolor(320, 240); $text_color = imagecolorallocate($img, 233, 14, 91); imagestring($img, 2, 5, 5, "This is example", $text_color); imagepng($img); imagedestroy($img);