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

php 驗證碼實例代碼

編輯:關於PHP編程

如果要用php的畫圖函數,首先要啟用這個模塊的功能。就是把php.ini中php_gd2.dll前面的注釋去掉就好了。
  下面開始畫圖:
復制代碼 代碼如下:
  <?php
session_start();
//生成驗證碼圖片
Header("Content-type: image/PNG");
$im = imagecreate(44,18); // 畫一張指定寬高的圖片
$back = ImageColorAllocate($im, 245,245,245); // 定義背景顏色
imagefill($im,0,0,$back); //把背景顏色填充到剛剛畫出來的圖片中
$vcodes = "";
srand((double)microtime()*1000000);
//生成4位數字
for($i=0;$i<4;$i++){
$font = ImageColorAllocate($im, rand(100,255),rand(0,100),rand(100,255)); // 生成隨機顏色
$authnum=rand(1,9);
$vcodes.=$authnum;
imagestring($im, 5, 2+$i*10, 1, $authnum, $font);
}
$_SESSION['VCODE'] = $vcodes;
for($i=0;$i<100;$i++) //加入干擾象素
{
$randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%70 , rand()%30 , $randcolor); // 畫像素點函數
}
ImagePNG($im);
ImageDestroy($im);
?>

  基本就是這樣實現了,其實如果給圖片打水印也無非就是往圖片裡面寫字,原理都差不多的。
  使用的地方直接
  <img src="xxx.php" /> 填寫這個php文件的名字,就可以使用了。

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