PHP生成验证码图片
生活随笔
收集整理的這篇文章主要介紹了
PHP生成验证码图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
PHP驗證碼生成
直接上編碼:
<?php $image=imagecreatetruecolor(100,30); $bgcolor=imagecolorallocate($image,255,255,255); imagefill($image,0,0,$bgcolor); //存儲驗證碼 $captch_code=""; //隨機選取4個數字 for($i=0;$i<4;$i++){ $fontsize=10; $fontcolor=imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120)); $fontcontent=rand(0,9); $captch_code.=$fontcontent; $x=($i*100/4)+rand(5,10); $y=rand(5,10); imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor); } //增加干擾點 for($i=0;$i<100;$i++){ $pointcolor=imagecolorallocate($image,rand(0,255),rand(0,255),rand(0,255)); imagesetpixel($image,rand(1,99),rand(1,29),$pointcolor); } //增加干擾線 for($i=0;$i<5;$i++){ $linecolor=imagecolorallocate($image,rand(0,255),rand(0,255),rand(0,255)); imageline($image,rand(1,99),rand(1,29),rand(1,99),rand(1,29),$linecolor); } header("content-type:image/png"); imagepng($image); magedestroy($image); ?>效果如下:
?
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的PHP生成验证码图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php绘制奥运五环(GD)
- 下一篇: PHP获取文件后缀名