PHP实现简单汉字验证码

举报
黄啊码 发表于 2022/06/28 22:36:42 2022/06/28
【摘要】 创建背景画布 ? 1 2 3 $image = ima...

创建背景画布

?
1
2
3
$image = imagecreatetruecolor(200, 60);
$background = imagecolorallocate( $image , 255, 255, 255);
imagefill( $image , 0, 0, $background );

画干扰点

?
1
2
3
4
5
6
for ( $i =0; $i < 300; $i ++) {
   $pixColor = imagecolorallocate( $image , rand(150, 240), rand(150, 240), rand(150, 240));
   $pixX = rand(10, 190);
   $pixY = rand(5, 55);
   imagesetpixel( $image , $pixX , $pixY , $pixColor );
}

画干扰线

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//4条水平线
for ( $i =0; $i < 5; $i ++) {
   $lineColor = imagecolorallocate( $image , rand(50, 150), rand(50, 150), rand(50, 150));
   $lineX1 = 0;
   $lineX2 = 300;
   $lineY1 = ( $i + 1) * 12;
   $lineY2 = ( $i + 1) * 12;
   imageline( $image , $lineX1 , $lineY1 , $lineX2 , $lineY2 , $lineColor );
}
 
//10条垂直线
for ( $i =0; $i < 30; $i ++) {
   $lineColor = imagecolorallocate( $image , rand(50, 150), rand(50, 150), rand(50, 150));
   $lineX1 = ( $i + 1) * 10;
   $lineX2 = ( $i + 1) * 10;
   $lineY1 = 0;
   $lineY2 = 60;
   imageline( $image , $lineX1 , $lineY1 , $lineX2 , $lineY2 , $lineColor );
}

画汉字

?
1
2
3
4
5
6
7
$text = array ( '栀' , '子' , '花' , '开' );
for ( $i =0; $i < 4; $i ++) {
   $textColor = imagecolorallocate( $image , rand(20, 100), rand(20, 100), rand(20, 100));
   $textX = $i * 50 + 10;
   $textY = rand(40, 60);
   imagettftext( $image , 30, rand(20, 50), $textX , $textY , $textColor , "/Library/Fonts/华文仿宋.ttf" , $text [ $i ]);
}

这里注意一下,字体文件一定要支持中文的

编码要使用utf-8,gbk的中文记得要转吗【iconv函数可以帮助你】

输出图像

?
1
2
header( "Content-Type:image/png" );
imagepng( $image );

销毁资源

?
1
imagedestroy( $image );

经过粗略的搞吧搞吧,中文验证码也就显示出来了,当然一般网站使用的时候会有一个汉字库种子,从里面随机取出特定个数的汉字显示,最后就是记录到session进行验证了。

文章来源: markwcm.blog.csdn.net,作者:黄啊码,版权归原作者所有,如需转载,请联系作者。

原文链接:markwcm.blog.csdn.net/article/details/47127101

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。