廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:
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生成簡單的驗證碼,代碼附有注釋,大家在參考過程中有任何疑問歡迎給我留言小編會及時回復大家的。