Home  >  Article  >  Backend Development  >  关于验证码坐标的取值解决办法

关于验证码坐标的取值解决办法

WBOY
WBOYOriginal
2016-06-13 13:37:081096browse

关于验证码坐标的取值
-----------------------------------------------code-----------------------------------------------------
$image_width=70; //设置图像宽度
$image_height=18; //设置图像高度

$new_number=1234;
$num_image=imagecreate($image_width,$image_height); //创建一个画布
imagecolorallocate($num_image,255,255,255); //设置画布的颜色

for($i=0;$i   $font=mt_rand(3,5); //设置随机的字体
  $x=mt_rand(1,8)+$image_width*$i/4; //设置随机字符所在位置的X坐标
  $y=mt_rand(1,$image_height/4); //设置随机字符所在位置的Y坐标
  $color=imagecolorallocate($num_image,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200)); //设置字符的颜色
  imagestring($num_image,$font,$x,$y,$new_number[$i],$color); //水平输出字符
}

imagepng($num_image); //生成PNG格式的图像
imagedestroy($num_image); //释放图像资源
----------------------------------------------code------------------------

 $x=mt_rand(1,8)+$image_width*$i/4; //设置随机字符所在位置的X坐标
 $y=mt_rand(1,$image_height/4); //设置随机字符所在位置的Y坐标

$x,$y 为什么是这么取值的?是随便取的 还是有规律的?有规律的就请解释下




------解决方案--------------------
这个位置可以随便取
但理论上我们认为验证码的字符不能超过边线,不然就会无法识别
一般情况下验证码出现的位置应该是随机的,而且是在不超过边线的前提下随机范围最大化
这样可以减小被机器脚本破解的几率

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn