まず、php で gd ライブラリがオンになっているかどうかを確認してみましょう。
コードをコピーします コードは次のとおりです:
if(extension_loaded('gd')) {
echo 'gd
を使用できます';
foreach(gd_info( ) as $cate =>$value)
echo "$cate: $value
";
}else
echo 'gd 拡張機能がインストールされていません';
?>
リターン情報がある場合正しく、頻繁に使用できます
例 1
コードをコピーします コードは次のとおりです:
/**
* vCode(m,n,x,y) m 個の数値、表示サイズは n、横幅 x、横高さ y
* 記録セッションを自分で書き換える $code
*/
session_start(); 4, 15); // 4 つの数値、表示サイズは 15 です
function vCode($num = 4, $size = 20, $width = 0, $height = 0) {
!$width && $width = $num * $size * 4 / 5 + 5;
!$ height && $height = $size + 10;
// 0 1 O l などを削除
$str = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVW";
$code = '';
for ( $i = 0; $i < $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["VerifyCode"]=$code;
header("Cache-Control; : max-age=1、s-maxage=1、キャッシュなし、必須再検証");
header("Content-type: image/png;charset=gb2312");
imagepng($im);
imagedestroy ($im);
}
?>
例 2
PHP を使用して開発された検証コードを、プロジェクトで簡単に使用できるセッションおよび GD ライブラリ拡張機能 (w3c が推奨) と組み合わせて生成する例です。そしてスタイルは美しいです
コードをコピーしてください
コードは次のとおりです:
//首先开启session
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";
//決定要生成验证的文字列
$code = '';
$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');// ブラウザ widow に表示される画像タイプを定義します
imagejpeg($ image);//画像を表示します
imagedestroy($image);//画像インスタンスを破棄します
//設置セッション、実行
$_SESSION['6_letters_code'] = $code;
function hexrgb ($hexstr)
{
$int = hexdec($hexstr);
return array("red" => 0xFF & ($int >> 0x10),
"green" => 0xFF & ($int >> 0x8),
"青" => 0xFF & $int);
}
人による推論の 2 番目の生成認証コードプログラムコードは、各位の同時参照が可能であり、最後のものは W3C 規格で生成されたもので、php gd クラスも利用されています。
http://www.bkjia.com/PHPjc/328174.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/328174.html技術記事私は、次の自分の php を最初に検査しましたが、gd パッケージが公開されていません。 foreach(gd_info() as $cate=$v...