// create a 100*30 image
$im = imagecreate(65, 21);
// white background and blue text
$bg = imagecolorallocate($im, 0, 0, 0);
$textcolor = imagecolorallocate($im, 255, 255, 255);
// write the string at the top left
//imagestring($im, 5, 0, 0, "ThaiCreate.Com Random Password", $textcolor);
imagestring($im, 10, 7,4, $str, $textcolor);
// output the image
header("Content-type: image/png");
imagepng($im);
imagedestroy($im);
?>