首页 > 代码库 > 一个简单的验证码
一个简单的验证码
//设置画布宽度 $image = imagecreatetruecolor(100, 50); //画布颜色 $bgcolor = imagecolorallocate($image, 255, 255, 255); // imagefill — 区域填充 imagefill($image, 0, 0, $bgcolor); //四个随机验证码 // for($i=0;$i<4;$i++){ // $fontsize = 6;//字体大小 // $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); //字体颜色 // $fontcontent = rand(0,9);//随机数字 // //定位 // $x = ($i * 100 / 4)+ rand(5,10); // // $y = rand(5,10); // imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor); // } //包含英文字母的验证码 for($i=0;$i<4;$i++){ $fontsize = 6; $data =http://www.mamicode.com/‘123456789abcdefghijklmnopqrstuvwxy‘ ;//建立字典"content-type:image/png"); //输出图像 imagepng($image); //销毁图像 imagedestroy($image);
一个简单的验证码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。