程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP圖片驗證碼制作(中)

PHP圖片驗證碼制作(中)

編輯:關於PHP編程

隨機生成數字,字母的代碼:
 
<?php
//che.php
session_start();
for($i=0;$i<4;$i++)
 {
 $rand.=dechex(rand(1,15));
 }
 $_SESSION['check_num']=$rand;
$image=imagecreatetruecolor(50,30);
$bg=imagecolorallocate($im,0,0,0);//第一次用調色板的時候,背景顏色
$te=imagecolorallocate($im,255,255,255);
imagestring($image,6,rand(0,20),rand(0,2),$rand,$te);
ob_clean();//PHP網頁中因為 要生成驗證碼而出現 圖像"http://localhost/**.php"因其本身有錯無法顯示
header("Content-type:image/jpeg"); imagejpeg($image);
?>
 
給圖片畫出干擾線代碼:
for($i=0;$i<8;$i++)//畫出多條線
{
$cg=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));//產生隨機的顏色
imageline($im,rand(10,40),0,rand(10,40),20,$cg);
}
給圖片畫出干擾點的代碼:
for($i=0;$i<80;$i++)//畫出多個點
{
imagesetpixel($im,rand(0,40),rand(0,20),$cg);
}
把文字寫入圖片代碼:
 
$str=array('我','我','親','親');//存儲顯示的漢字
for($i=0;$i<4;$i++)
{
     $sss.=$str[rand(0,3)];//隨機顯示漢字
}

//$str=iconv("gb2312","utf-8",$str); //漢字編碼轉化,我的好像不需要
imagettftext($im,10,0,rand(5,60),rand(5,60),$te,"simhei.ttf",$sss);//
 
0:字體的傾斜度,“simhei.ttf”:字體樣式,一般放在根目錄下;

 

 

摘自 ms.元

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved