PHP驗證碼的產生c和產生驗證碼程式

來源:互聯網
上載者:User

由於註冊的時候常常會用到註冊碼來防止機器惡意註冊,這裡我發表一個產生png圖片驗證碼的基本映像,很簡陋但思想很清晰:
1、產生一張png的圖片
2、為圖片設定背景色
3、設定字型顏色和樣式
4、產生4位元的隨機的驗證碼
5、把產生的每個字元調整旋轉角度和位置畫到png圖片上
6、加入噪點和幹擾線防止註冊機器分析原圖片來惡意註冊
7、輸出圖片
8、釋放圖片所佔記憶體
authcode.php檔案

 代碼如下 複製代碼

<?php
        session_start ();
        header ( 'content-type: image/png' );
        //建立圖片
        $im = imagecreate($x=130,$y=45 );
        $bg = imagecolorallocate($im,rand(50,200),rand(0,155),rand(0,155)); //第一次對 imagecolorallocate() 的調用會給基於調色盤的映像填充背景色
        $fontcolor = imagecolorallocate ( $im, 255, 255, 255 );   //字型顏色
        $fontstyle = 'rock.ttf';                   //字型樣式,這個可以從c:windows onts檔案夾下找到,我把它放到和authcode.php檔案同一個目錄,這裡可以替換其他的字型樣式
        //產生隨機字元
        for($i = 0; $i < 4; $i ++) {
                $randasciinumarray         = array (rand(48,57),rand(65,90));
                $randasciinum                 = $randasciinumarray [rand ( 0, 1 )];
                $randstr                         = chr ( $randasciinum );
                imagettftext($im,30,rand(0,20)-rand(0,25),5+$i*30,rand(30,35),$fontcolor,$fontstyle,$randstr);
                $authcode                        .= $randstr;
        }
        $_session['authcode']        = $randfourstr;//使用者和使用者輸入的驗證碼做比較
        //幹擾線
        for ($i=0;$i<8;$i++){
                $linecolor        = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
                imageline ($im,rand(0,$x),0,rand(0,$x),$y,$linecolor);
        }
        //幹擾點
        for ($i=0;$i<250;$i++){
                imagesetpixel($im,rand(0,$x),rand(0,$y),$fontcolor);
        }
        imagepng($im);
        imagedestroy($im);               
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.