使用php寫出一個驗證碼圖片,由於寬度被定死了,所以操作起來不太方便,之後盡量寫靈活,成為一個可調用的函數。

來源:互聯網
上載者:User

標籤:div   eth   php   creat   efi   let   靈活   ring   diff   

<?php// Due to the height and width of the captcha image is fixed, not so easy to use, change will be diffic// Declare the following code to the browser is displayed as a pictureheader(‘Content-type:image/jpeg‘);// Width 120$width=120;// Height 40$height=40;// Draws an image that 120*40$img = imagecreatetruecolor($width, $height);// Random letters in the captcha$ele = array("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z");$string = "";for($i = 0; $i < 4; $i++) {$string.=$ele[rand(0,count($ele)-1)];}// The image‘s background color$colorBg = imagecolorallocate($img, rand(200,255), rand(200,255), rand(200,255));// The image‘s border color$colorBorder = imagecolorallocate($img, rand(200,255), rand(200,255), rand(200,255));// font color$colorString = imagecolorallocate($img, rand(10,100), rand(10,100), rand(10,100));// Fill color to the imageimagefill($img, 0, 0, $colorBg);// draw the rectangleimagerectangle($img, 0, 0, $width-1, $height-1, $colorBorder);for($i = 0; $i < 100; $i++) {// Using Stochastic methods to draw pointsimagesetpixel($img, rand(0,$width-1), rand(0,$height-1), imagecolorallocate($img,rand(100,150), rand(100,150), rand(100,150)));}// Draws a linefor($i = 0; $i < 3; $i++) {imageline($img, rand(0,$width/2), rand(0,$height/2), rand($width/2,$width), rand(0,$height), imagecolorallocate($img,rand(100,150), rand(100,150), rand(100,150)));}// fontimagettftext($img, rand(15,20), rand(-5,10), rand(10,20), rand(30,35), $colorString, ‘GARTON.TTF‘, $string);// Output Imageimagejpeg($img);//  release the memory being used by the image, and then clear the graphicimagedestroy($img);?>

  此代碼僅供新手參考,大神若有意見請提出,小弟感激不盡

以上代碼純屬本人手打,轉載請註明!

使用php寫出一個驗證碼圖片,由於寬度被定死了,所以操作起來不太方便,之後盡量寫靈活,成為一個可調用的函數。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.