首页 > 语言 > PHP > 正文

php 验证码生成程序,可自动判断php gd库

2024-09-04 11:44:25
字体:
来源:转载
供稿:网友
  1. function ShowKey() 
  2. $key=strtolower(domake_password(4)); 
  3. $set=esetcookie("checkkey",$key); 
  4.  //是否支持gd库 
  5. if (function_exists("imagejpeg")) { 
  6.    header ("Content-type: image/jpeg"); 
  7.    $img=imagecreate(69,20); 
  8.    $black=imagecolorallocate($img,255,255,255); 
  9.    $gray=imagecolorallocate($img,102,102,102); 
  10.    imagefill($img,0,0,$gray); 
  11.    imagestring($img,3,14,3,$key,$black); 
  12.    imagejpeg($img); 
  13.    imagedestroy($img); 
  14. elseif (function_exists("imagegif")) { 
  15.    header ("Content-type: image/gif"); 
  16.    $img=imagecreate(69,20); 
  17.    $black=imagecolorallocate($img,255,255,255); 
  18.    $gray=imagecolorallocate($img,102,102,102); 
  19.    imagefill($img,0,0,$gray); 
  20.    imagestring($img,3,14,3,$key,$black); 
  21.    imagegif($img); 
  22.    imagedestroy($img); 
  23. elseif (function_exists("imagepng")) { 
  24.  header ("Content-type: image/png"); 
  25.    $img=imagecreate(69,20); 
  26.    $black=imagecolorallocate($img,255,255,255); 
  27.    $gray=imagecolorallocate($img,102,102,102); 
  28.    imagefill($img,0,0,$gray); 
  29.    imagestring($img,3,14,3,$key,$black); 
  30.    imagepng($img); 
  31.    imagedestroy($img); 
  32. elseif (function_exists("imagewbmp")) { 
  33.  header ("Content-type: image/vnd.wap.wbmp"); 
  34.    $img=imagecreate(69,20); 
  35.    $black=imagecolorallocate($img,255,255,255); 
  36.    $gray=imagecolorallocate($img,102,102,102); 
  37.    imagefill($img,0,0,$gray); 
  38.    imagestring($img,3,14,3,$key,$black); 
  39.    imagewbmp($img); 
  40.    imagedestroy($img); 
  41. else { 
  42.  $set=esetcookie("checkkey","ebak"); 
  43.  @include("class/functions.php"); 
  44.  echo ReadFiletext("images/ebak.jpg"); 
  45. }//开源代码Vevb.com 
  46. ShowKey(); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表