100) // max limit $_GET['t'] = ''; // set font path putenv('GDFONTPATH=' . dirname(__FILE__)); // create image $image = imagecreatetruecolor(250, 28); // make the background transparent imagecolortransparent($image, imagecolorallocate($image, 0, 0, 0)); // set text imagettftext($image, 18, 0, 4, 20, imagecolorallocate($image, 240, 209, 164), 'martel.ttf', utf8_decode($_GET['t'])); // header mime type header('Content-type: image/gif'); // save image imagegif($image/*, $file*/); //} // output image //header('Content-type: image/gif'); //readfile($file); ?>