利用php生成验证码
发布:smiling 来源: PHP粉丝网 添加日期:2018-08-02 17:00:19 浏览: 评论:0
- <?php
- /**
- * php生成<a href="http://www.phpfensi.com/zhuanti/yanzhengma/" class="anchor" target="_blank">验证码</a>
- * @param $width 画布宽
- * @param $height 画布高
- * @param $vcodelen 验证码长度
- * @param $pointnum 干扰像素点数量
- * @param $linenum 干扰线条数量
- *
- * 思路:创建验证码画布,生成并填充背景色,生成验证码内容/干扰像素点/线,填充到画布,输出。
- */
- $width= 100;
- $height= 30;
- $vcodelen= 4;
- $pointnum= 200;
- $linenum= 3;
- // 创建画布
- $image= imagecreatetruecolor($width,$height);
- // 创建色块
- $bgcolor= imagecolorallocate($image, 255, 255, 255);
- // 填充画布背景色
- imagefill($image, 0, 0,$bgcolor);
- // 验证码内容
- for($i=0;$i<$vcodelen;$i++) {
- // <a href="/tags.php/%D7%D6%CC%E5%B4%F3%D0%A1/" target="_blank">字体大小</a>
- $fontsize= 5;
- // 字体颜色,颜色在限定范围内随机
- $fontcolor= imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
- $data='abcdefghijklmnopqrstuvwxyz0123456789'
- // 验证码内容在以上字符串内随机截取
- $fontcontent=<a href="/tags.php/substr/" target="_blank">substr</a>($data, rand(0,strlen($data)),1);
- // 字符串显示位置
- $x= ($i*$width/4)+rand(5,15);
- $y= rand(5,10);
- // 字符串填充图片
- // imagestring的字体大小可选1-5,字体再大需要用imagettftext函数(需要字体文件)
- imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
- // imagettftext($image, $fontsize, 0, $x, $y, $fontcolor, '/font/Geneva.dfont', $fontcontent);
- }
- // 干扰像素点
- for($i=0;$i<$pointnum;$i++) {
- $pointcolor= imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
- // 画布填充像素点函数
- imagesetpixel($image, rand(0,$width), rand(0,$height),$pointcolor);
- }
- // 干扰线条
- for($i=0;$i<$linenum;$i++) {
- $linecolor= imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
- // 画布填充线条函数
- imageline($image, rand(0,$width), rand(0,$height), rand(0,$width), rand(0,$height),$linecolor);
- }
- // 图片输出格式
- header('content-type: image/png');
- // 输出验证码图片
- imagepng($image);
- // 销毁画布
- imagedestroy($image);
- ?>
Tags:
- 上一篇:php生成图片缩略图功能示例
- 下一篇:PHP实现图片批量打包下载功能
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)