php生成数字字母的验证码图片
发布:smiling 来源: PHP粉丝网 添加日期:2021-06-12 19:42:27 浏览: 评论:0
本文给大家分享的是使用php实现的生成包含数字字母的验证码图片的代码,十分的简单实用,有需要的小伙伴可以参考下,php生成数字字母的验证码图片。
- <?php
- header ('Content-Type: image/png');
- $image=imagecreatetruecolor(100, 30);
- $color=imagecolorallocate($image, 255, 255, 255);
- imagefill($image, 20, 20, $color);
- //只含有数字
- // for($i=0;$i<4;$i++){
- // $font=6;
- // $x=rand(5,10)+$i*100/4;
- // $y=rand(8, 15);
- // $string=rand(0, 9);
- // $color=imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
- // imagestring($image, $font, $x, $y, $string, $color);
- // }
- //含有数字和字母的
- for($i=0;$i<4;$i++){
- $fontSize=6;
- $x=rand(5,10)+$i*100/4;
- $y=rand(5, 15);
- $data='abcdefghijklmnopqrstuvwxyz123456789';
- $string=substr($data,rand(0, strlen($data)),1);
- $color=imagecolorallocate($image,rand(0,120), rand(0,120), rand(0,120));
- imagestring($image, $fontSize, $x, $y, $string, $color);
- }
- //干扰点元素
- for($i=0;$i<200;$i++){
- $pointColor=imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255));
- imagesetpixel($image, rand(0, 100), rand(0, 30), $pointColor);
- }
- //干扰线元素
- for($i=0;$i<2;$i++){
- $linePoint=imagecolorallocate($image, rand(150, 255), rand(150, 255), rand(150, 255));
- imageline($image, rand(10, 50), rand(10, 20), rand(80,90), rand(15, 25), $linePoint);
- }
- imagepng($image);
- imagedestroy($image);
- ?>
以上所述就是本文的全部内容了,希望大家能够喜欢。
Tags: php生成验证码
相关文章
- ·PHP生成GIF动态图片验证码(2014-08-18)
- ·php生成验证码图片学习笔记(2014-08-19)
- ·php生成验证码类代码(2014-08-19)
- ·php生成验证码实现代码(2014-08-19)
- ·php生成验证码详细教程(2014-08-19)
- ·php加入干扰的生成验证码代码(2014-08-19)
- ·php生成图形验证码(2014-08-19)
- ·php 复杂生成验证码图片(2014-08-19)
- ·php 生成验证码程序(2014-08-20)
- ·PHP生成带背景的图形验证码程序(2014-08-22)
- ·php生成验证码图片程序(2014-08-23)
- ·PHP验证码生成类完整代码(2014-08-28)
- ·php生成验证码,缩略图及水印图的类分享(2021-07-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)