首页 > 代码库 > php 扭曲验证码
php 扭曲验证码
1 <?php 2 3 class image{ 4 public static function code(){ 5 6 $str=‘abcdefghijklmnopqrstuvwxyz0123456789‘; 7 $code = substr(str_shuffle($str),0,5); 8 9 // 2块画布 10 $src = imagecreatetruecolor(60, 25); 11 $dst = imagecreatetruecolor(60, 25); 12 13 // 灰色背景 14 $sgray=imagecolorallocate($src, 200, 200, 200); 15 $dgray=imagecolorallocate($dst, 200, 200, 200); 16 17 //蓝色 18 $sblue=imagecolorallocate($src, 0, 0, 255); 19 20 imagefill($src, 0, 0, $sgray); 21 imagefill($dst, 0, 0, $dgray); 22 23 //写字 24 imagestring($src,5,0,0,$code,$sblue); 25 26 for($i=0;$i<60;$i++){ 27 28 //根据正弦曲线计算上下波动 29 30 for($i=0;$i<60;$i++){ 31 $offset = 3;//最大波动几像素 32 $round = 2;//扭动2个周期,2pie 33 $posY = round(sin($i *$round*2*M_PI/60)*$offset); //更具正弦曲线就算偏移量 34 35 imagecopy($dst, $src, $i, $posY, $i, 0, 1, 25); 36 } 37 38 39 } 40 41 42 43 header(‘Content-type: image/jpeg‘); 44 imagejpeg($dst); 45 46 47 } 48 } 49 50 51 52 //调用 53 54 image::code(); 55 56 ?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。