<?$font = "monofont.ttf";$image = @imagecreate(80, 30);$bg = imagecolorallocate($image,200,220,220); $black = imagecolorallocate($image, 0, 0, 0); imagettftext($image,28,0,2,25,$black,$font,$_GET['str']); header("Content-type:image/png");	imagepng($image); imagedestroy($image); 		?>