コードをコピーします コードは次のとおりです:
public function captcha(){
$font_dir = $_SERVER ["DOCUMENT_ROOT"] // フォント ライブラリ
$img_w = 58; // 画像の幅を設定します
$img_h = 20; // 画像の高さを設定します
$font_size = 11; // フォントサイズ
$angle_r = 10; ; // 右偏向コーナー
$code_str = "ABCDEFGHJKLMNPQRSTUVWXYZ36";
$word_len = 4; // 2 つの単語間のスペース
$margin = 2;
$base_line = 15; // テキストのベースラインの位置
$base_line_offset = 2; // ノイズ ポイントのベース番号
$pixel_color= 8; // ノイズ ポイントは $pixel_color のみを持ちますノイズ ポイントの数は $pixel_num*$pixel_color です
$noise_font_size = 1; // ノイズ フォント サイズ
$session_key= "my.xoyo_captcha" // カスタム セッション キー名
header("Cache-Control: no-cache , must-revalidate");
header("有効期限: 1997 年 7 月 26 日月曜日 05:00:00 GMT");
header("Pragma: no-cache");
header("Cache-control: private") ;
header('Content-Type: image/png');
$word = "";
$code_str_len = strlen($code_str) - 1; ; $word_len; $i++) {
$word.= $code_str[rand(0, $code_str_len)]
}
$_SESSION [$session_key] = イメージ作成 truecolor($img_w , $img_h);
imagefilledrectangle($image, 0, 0, $img_w - 1, $img_h - 1, imagecolorallocate($image, mt_rand(235, 255), mt_rand(235, 255), mt_rand(235, 255) ) );
//ノイズを描画します
for($i = 0; $i < $pixel_color; $i++){
$noise_color = imagecolorallocate( $image, mt_rand(150,225), mt_rand(150,225), mt_rand( 150,225) );
for($j = 0; $j imagestring( $image, $noise_font_size, mt_rand(-10, $img_w), mt_rand(-10, $img_h), $code_str [mt_rand(0, $code_str_len)], $noise_color );
}
}
//テキストを描画
for ($i = 0; $i < $word_len; ++$i) {
$color = imagecolorallocate ($image, mt_rand(0, 100), mt_rand(20, 120), mt_rand(50, 150));
imagettftext($image, $font_size, mt_rand($angle_l, $angle_r), $margin, mt_rand ($) base_line-$base_line_offset, $base_line+$base_line_offset), $color, $font, mb_substr($word, $i, 1, 'utf-8'));
$margin += (imagefontwidth($font_size) + $padding); ;
}
imagepng($image)
}
;
http://www.bkjia.com/PHPjc/324532.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/324532.html
技術記事次のようにコードをコピーします: ?php public function captcha(){ $font_dir = $_SERVER ["DOCUMENT_ROOT"] . "your_ttf_file.ttf"; // フォント ライブラリ $img_w = 58; // 画像の幅を設定します。 20; / ...