"; session_start(); $img=imagecreatetruecolor(80,25); $bg = imagecolorallocate($img, 255, 255, 255); $textcolor = imagecolorallocate($img, 0, 250, 250); imagestring($img,6,5,5,$_SESSION['imgkey'],$textcolor); header("Content-type: image/jpeg"); imagejpeg($img); imagedestroy($img); ?>