当前位置:首页 > PHP教程 > php图像处理 > 列表

php生成验证码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-09 15:10:45 浏览: 评论:0 
  1. <?php 
  2. session_start(); 
  3.  
  4. header("content-type:image/png");设置生成图片的格式这里为png 
  5.  
  6. $width=40;//宽度 
  7.  
  8. $height=25;//高度 
  9.  
  10. $color="#ffffff";//色彩 
  11.  
  12. $num=rand(1000,9999);//生成随机数4位 
  13.  
  14. $_SESSION['ver']=$num;保存到session以前验证 
  15.  
  16. $img=imagecreate($width,$height);//使用imagecreate创建图片 
  17.  
  18. $bg1=imagecolorallocate($img,rand(0,100),rand(0,250),rand(0,255));//图片色采 
  19.  
  20. $bg2=imagecolorallocate($img,rand(0,205),rand(0,250),rand(0,245)); 
  21.  
  22. //imageline($img,40,20,40,40,$color); 
  23.  
  24. //imagesetpixel($img,44,44,$color); 
  25.  
  26. imagestring($img,7,4,7,$num,$bg2);//增加杂点 
  27.  
  28. imagepng($img);//生成图片 
  29.  
  30. imagedestroy($img);//销毁 
  31. ?> 

Tags: php 生成 验证码

分享到: