码迷,mamicode.com
首页 > Web开发 > 详细

php随机输出验证码

时间:2017-04-08 12:12:13      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:bsp   str   验证   噪点   white   pixel   gre   生成   images   

<?php
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00);
$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$white);
//生成随机的验证码
$code = ‘‘;
for($i = 0; $i < 4; $i++) {
    $code .= rand(0, 9);
}
imagestring($img, 5, 10, 10, $code, $black);
//加入噪点干扰
for($i=0;$i<50;$i++) {
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black);
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $green);
}
//输出验证码
header("content-type: image/png");
imagepng($img);
imagedestroy($img);

php随机输出验证码

标签:bsp   str   验证   噪点   white   pixel   gre   生成   images   

原文地址:http://www.cnblogs.com/Yue0327/p/6681438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!