/**
* vCode(m,n,x,y) m 個の数値、表示サイズは n、横幅 x、横高さ y
* 記録セッションの $code を自分で書き換えます
*/
セッション開始();
vCode(4, 15); // 4 つの数値、表示サイズは 15 です
関数 vCode($num = 4, $size = 20, $width = 0, $height = 0) {
!$width && $width = $num * $size * 4 / 5 + 5;
!$高さ && $高さ = $サイズ + 10;
// 0 1 O l などを削除しました
$str = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVW";
$コード = '';
for ($i = 0; $i < $num; $i++) {
$code .= $str[mt_rand(0, strlen($str)-1)];
}
// 画像を描画します
$im = imagecreatetruecolor($width, $height);
// 使用する色を定義します
$back_color = imagecolorallocate($im, 235, 236, 237);
$boer_color = imagecolorallocate($im, 118, 151, 199);
$text_color = imagecolorallocate($im, mt_rand(0, 200), mt_rand(0, 120), mt_rand(0, 120));
// 背景を描画します
imagefilledrectangle($im, 0, 0, $width, $height, $back_color);
//境界線を描画します
imagerectangle($im, 0, 0, $width-1, $height-1, $boer_color);
//干渉線を描画します
for($i = 0;$i <5;$i++) {
$font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagearc($im, mt_rand(- $width, $width), mt_rand(- $height, $height), mt_rand(30, $width * 2), mt_rand(20, $height * 2), mt_rand(0, 360 )、mt_rand(0, 360)、$font_color);
}
// 干渉点を描画します
for($i = 0;$i <50;$i++) {
$font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $font_color);
}
// 認証コードを描画します
@imagefttext($im, $size, 0, 5, $size + 3, $text_color, 'c:WINDOWSFontssimsun.ttc', $code);
$_SESSION["検証コード"]=$コード
header("キャッシュ制御: max-age=1、s-maxage=1、キャッシュなし、必須再検証");
header("コンテンツタイプ: image/png;charset=gb2312");
imagepng($im);
imagedestroy($im);
}
?>
例 2
PHP を使用して開発された検証コードを生成する例。プロジェクトで簡単に使用できるセッションおよび GD ライブラリ拡張機能 (w3c が推奨) を組み合わせています。そしてスタイルも美しい // まずはセッションを開いてください
session_start();
//フロントに表示される認証コードの長さと幅を定義します
$image_width = 120;
$image_height = 40;
$characters_on_image = 6;
$font = './monofont.ttf';
// CAPTCHA コードで使用できる文字。
//混乱を招く文字 (l 1 と i など) を避けてください
$possible_letters = '23456789bcdfghjkmnpqrstvwxyz';
$random_dots = 10;
$random_lines = 30;
$captcha_text_color="0x142864";
$captcha_noice_color = "0x142864";
//検証コードを生成する文字列を定義します
$コード = '';
$i = 0;
while ($i < $characters_on_image) {
$code .= substr($possible_letters, mt_rand(0, strlen($possible_letters)-1), 1);
$i++;
}
$font_size = $image_height * 0.75;
$image = @imagecreate($image_width, $image_height);
/* ここで背景、テキスト、ノイズの色を設定します */
$background_color = imagecolorallocate($image, 255, 255, 255);
$arr_text_color = hexrgb($captcha_text_color);
$text_color = imagecolorallocate($image, $arr_text_color['red'],
$arr_text_color['green'], $arr_text_color['blue']);
$arr_noice_color = hexrgb($captcha_noice_color);
$image_noise_color = imagecolorallocate($image, $arr_noice_color['red'],
$arr_noice_color['green'], $arr_noice_color['blue']);
/* バックグラウンドでドットをランダムに生成します */
for( $i=0; $i<$random_dots; $i++ ) {
imagefilledellipse($image, mt_rand(0,$image_width),
mt_rand(0,$image_height), 2, 3, $image_noise_color);
}
/* 画像の背景に線をランダムに生成 */
for( $i=0; $i<$random_lines; $i++ ) {
imageline($image, mt_rand(0,$image_width), mt_rand(0,$image_height),
mt_rand(0,$image_width), mt_rand(0,$image_height), $image_noise_color);
}
/* テキスト ボックスを作成し、そこに 6 文字のコードを追加します */
$textbox = imagettfbbox($font_size, 0, $font, $code);
$x = ($image_width - $textbox[4])/2;
$y = ($image_height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $font, $code);
/* ページの HTML ページにキャプチャ画像を表示 */
header('Content-Type: image/jpeg');// ブラウザー ウィンドウに表示される画像タイプを定義します
imagejpeg($image);//画像を表示します
imagedestroy($image);//画像インスタンスを破棄します
//セッションを設定して検証を行います
$_SESSION['6_letters_code'] = $code;
関数 hexrgb ($hexstr)
{
$int = hexdec($hexstr);
return array("red" => 0xFF & ($int >> 0x10),
"緑" => 0xFF & ($int >> 0x8)、
"青" => 0xFF & $int);
}
個人的には、検証コードを生成する 2 番目のプログラム コードを推奨します。最後のプログラム コードは、W3C 標準によって生成され、php gd ライブラリも使用します。
|