家园首页 Php4手册 我的相册 家园下载 个人文集 给我留言
我形我塑,网络相册,www.5x54.com 相册 相册 心情相册,少女相册 免费申请,我形我塑免费相册
 家园 个人文集   http://www.5x54.com
 


PHP生成随机验证图片


作者:网上收集    点击: 读取中...

<?php
//  echo  '<img  src="XXX.php">';

  
$Validatemun=$_SESSION['ValidateNumber'];

  if(  
ereg("^[0-9]{3,4}$",$Validatemun)  )  //  控制字次3-4位数
  
{

      
Header("Content-type:image/png");

      
$img  =  imagecreate(  40,  17  );
      
$BlackColor  =  ImageColorAllocate  (  $img,  255,  255,  255  );
      
$FontColor  =  ImageColorAllocate  (  $img,  rand(0,100),  rand(0,100),  rand(0,100)  );

      
imageline  (  $img,  1,  1,  350,  25,  $BlackColor  );
      
imagestring  (  $img,  5,  2,  1,  $Validatemun,  $FontColor);

      for(  
$i=0;  $i<300;  $i++  )  //  In  the  Interference  pt.
      
{
        
$randcolor  =  ImageColorallocate(  $img,  rand(0,255),  rand(0,255),  rand(0,255)  );
        
imagesetpixel  (  $img,  rand()%70,  rand()%30,  $randcolor  );
      }

      
ImagePng(  $img  );
      
ImageDestroy(  $img  );

  }
?>

收藏此文章     打印  更新     编辑此文章    『关闭窗口』