php生成画像検証コード
まず大体の効果を見せてください。
じゃ、これからは直接コードを貼ります。
じゃ、これからは直接コードを貼ります。
<?php
$image = imagecreatetruecolor(100, 30); //
$imagecolor = imagecolorallocate($image, 255, 255, 255); //
imagefill($image, 0, 0, $imagecolor); //
for($i=0;$i<4;$i++ ){ // 4
$fontsize = 6;
$fontcolor = imagecolorallocate($image, rand(0, 200), rand(0, 200), rand(0, 200));
$fontcontent = rand(0, 9);
$x = $i*100/4 + rand(5, 15);
$y = rand(5, 10);
imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);
}
for($i=0;$i<200;$i++ ){ //
$pointcolor = imagecolorallocate($image, rand(50, 200), rand(50, 200), rand(50, 200));
$x = rand(1, 99);
$y = rand(1, 29);
imagesetpixel($image, $x, $y, $pointcolor);
}
for($i=0;$i<3;$i++){ //
$linecolor = imagecolorallocate($image, rand(100, 250), rand(100, 250), rand(100, 250));
$x1 = rand(1, 25);
$x2 = rand(50, 75);
$y1 = rand(1, 15);
$y2 = rand(15, 25);
imageline($image, $x1, $y1, $x2, $y2, $linecolor);
}
header("content-type:image/png");
imagepng($image);
imagedestroy($image);
?>
もう一つを共有します。中国語の検証コードを生成できます。
<?php
//1.qi gd GD API, GD , 。
// GD 。
session_start();
// GBK UTF-8 , GBK, php GBK
// UTF-8 , , UTF-8
$str = iconv("GBK", "utf-8", " ");
if(!is_string($str) || !mb_check_encoding($str,"utf-8"))
{
exit(" utf-8");
}
$zhongwenku_size;
// UTF-8
$zhongwenku_size = mb_strlen($str,"UTF-8");
//
$zhongwenku = array();
for( $i=0; $i<$zhongwenku_size; $i++)
{
$zhongwenku[$i] = mb_substr($str, $i,1,"UTF-8");
}
$result = "";
//
for($i=0; $i<4; $i++)
{
switch (rand(0, 1))
{
case 0:
$result.=$zhongwenku[rand(0, $zhongwenku_size-1)];
break;
case 1:
$result.=dechex(rand(0,15));
break;
}
}
$_SESSION["check"] = $result;
// 100, 30
$img = imagecreatetruecolor(100, 30);
//
$bg = imagecolorallocate($img, 0, 0, 0);
//
$te = imagecolorallocate($img, 255,255,255);
//
//imagestring($img, rand(3,8), rand(1,70), rand(1,10), $result, $te);
//
imagettftext($img, 13, rand(2, 9), 20 ,20, $te, "MSYH.TTF",$result);
$_SESSION["check"] = $result;
for($i=0; $i<3; $i++)
{
// $t = imagecolorallocate($img, rand(0, 255),rand(0, 255),rand(0, 255));
//
imageline($img, 0, rand(0, 20), rand(70,100), rand(0, 20), $te);
}
$t = imagecolorallocate($img, rand(0, 255),rand(0, 255),rand(0, 255));
//
for($i=0; $i<200; $i++)
{
imagesetpixel($img, rand(1, 100), rand(1, 30), $t);
}
// http image jpeg
header("Content-type: image/jpeg");
// jpeg
imagejpeg($img);
?>
もう一つの例をあげましょう。
<?php
session_start();
function random($len) {
$srcstr = "1a2s3d4f5g6hj8k9qwertyupzxcvbnm";
mt_srand();
$strs = "";
for ($i = 0; $i < $len; $i++) {
$strs .= $srcstr[mt_rand(0, 30)];
}
return $strs;
}
//
$str = random(4);
//
$width = 50;
//
$height = 25;
//
@ header("Content-Type:image/png");
//
$im = imagecreate($width, $height);
//
$back = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
//
$pix = imagecolorallocate($im, 187, 230, 247);
//
$font = imagecolorallocate($im, 41, 163, 238);
//
mt_srand();
for ($i = 0; $i < 1000; $i++) {
imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $pix);
}
//
imagestring($im, 5, 7, 5, $str, $font);
//
imagerectangle($im, 0, 0, $width -1, $height -1, $font);
//
imagepng($im);
imagedestroy($im);
$str = md5($str);
// cookie
//SetCookie("verification", $str, time() + 7200, "/");
// Session
$_SESSION["verification"] = $str;
?>
次はページで呼び出すだけでいいです。
<img id="checkpic" onclick="changing();" src='/images/checkcode.php' />
叶えたいなら「見えない?次のようなJSをページに追加します。
function changing(){
document.getElementById('checkpic').src="/images/checkcode.php?"+Math.random();
}
以上述べましたが、本文の内容は全部です。お好きになってください。