廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
for($i=0;$i<5;$i++){$rand .= dechex(rand(1,15)); // 隨機數16進位 1-F 產生5個}$im = imagecreatetruecolor(100,30); // 驗證碼的大小(畫板)$bg = imagecolorallocate($im, 0,0,0); // 背景顏色for($i<0;$i<100;$i++){$color_dian = imagecolorallocate($im, rand(0,255),rand(0,255),rand(0,255));imagesetpixel($im, rand()%100, rand()%30, $color_dian); // 在畫板上畫點}$color_font = imagecolorallocate($im, rand(88,255), rand(88,255), rand(100,255)); // 設定顏色 文字的顏色$color_line = imagecolorallocate($im, rand(0,255),rand(0,255),rand(0,255)); // 設定顏色 線的顏色imageline($im, rand(1,10), rand(5,13), rand(80,100), rand(5,15), $color_line); // 線 從第二個參數開始 線頭的x軸 、y軸 、結束的x軸 、y軸、 賦予的顏色imagestring($im,5,rand(4,60), rand(3,10), $rand ,$color_font); // 在畫板上 寫入 產生的碼 從第二個參數開始 字型的屬性、顯示在畫板上的位置x軸、y軸、隨機驗證碼、顏色// imagettftext($im, 12, 0, 12, 20, $color_font, 'haha.ttf', "我狠"); 在畫板上寫字header("Content-type:image/jpeg"); // 聲明要輸出的是什麼東西imagejpeg($im); // 以jpeg格式輸出圖片到瀏覽器
以上代碼是小編給大家介紹的基於PHP產生簡單的驗證碼,代碼附有注釋,大家在參考過程中有任何疑問歡迎給我留言小編會及時回複大家的。