/*
* 検証コード生成プログラム
*/
$letter = '';
//乱数を取得します
for ($i=0; $i
$letter .= chr(mt_rand(48,57));
}
//ランダムな文字を取得します
for ($i=0; $i
$letter .= chr(mt_rand(65,90));
}
//文字の順序を再構築します
$strs = str_split($letter);
シャッフル ($strs);
$rndstring = "";
while (list ( , $str) = each ($strs)) {
$rndstring .= $str;
}
// GD がサポートされている場合は、描画します
if(function_exists("imagecreate"))
{
//ブラウザにクッキーを書き込む
setcookie("zjs_ckstr", md5( strto lower($rndstring) ), time()+300,'/');//確認コードは 5 分間有効です
$rndcodelen = strlen($rndstring);
//画像サイズ
$im = imagecreate(100,30);
//$im = imagecreatefromgif("code.gif");
//フォント
$font_type = dirname(dirname(__FILE__))."/data/font/AvantGardeBookBT.ttf";
//背景色
$backcolor = imagecolorallocate($im,255,255,255);
//フォントの色
//imagettftext はサポートしていません
$fontColor = ImageColorAllocate($im, 0,0,0);
//imagettftext をサポートします
$fontColor2 = ImageColorAllocate($im, 0,0,0);
//シャドウ
$fontColor1 = ImageColorAllocate($im, 255,255,25);
//背景ノイズを追加します
$pixColor = imagecolorallocate($im, 199, 199, 199);//ノイズカラー
for($j=0; $j
imagesetpixel($im, rand(0,100), rand(0,30), $pixColor);
}
//背景線を追加
for($j=0; $j
//背景の線の色
$lineColor1 = ImageColorAllocate($im, rand(0, 255),rand(0, 255),rand(0, 255));
//背景線方向サイズ
イメージライン($im,rand(0,40),rand(3,25),rand(40,88),rand(3,25),$lineColor1);
}
$strposs = array();
//テキスト
for($i=0;$i
If(function_exists("imagettftext")){
$strposs[$i][0] = $i*16+17;//x 軸
$strposs[$i][1] = mt_rand(20,23);//y 軸
Imagettftext($im, 5, 5, $strposs[$i][0]+1, $strposs[$i][1]+1, $fontColor1, $font_type, $rndstring[$i]);
} 他{
画像文字列($im, 5, $i*16+7, mt_rand(2, 4), $rndstring[$i], $fontColor);
}
}
//テキスト
for($i=0;$i
If(function_exists("imagettftext")){
Imagettftext($im, 16,5, $strposs[$i][0]-1, $strposs[$i][1]-1, $fontColor2, $font_type, $rndstring[$i]);
}
}
header("Pragma:no-cachern");
header("キャッシュコントロール:no-cachern");
header("有効期限:0rn");
// 特定の種類の画像形式を出力します。優先順位は gif -> jpg ;
if(function_exists("imagegif")){
header("content-type:image/gifrn");
Imagegif($im);
}その他{
header("コンテンツタイプ:画像/jpegrn");
Imagejpeg($im);
}
ImageDestroy($im);
}
?>
|