php-PHP做了一個驗證碼,之前一直好好的,但突然就用不了了,載入不出來了!

來源:互聯網
上載者:User
關鍵字 驗證碼 php 函數
驗證碼php函數

 function verifyImg($width=80,$height=30){//定義畫布$img=imagecreatetruecolor($width, $height);//定義顏色$white=imagecolorallocate($img, 255, 255, 255);$black=imagecolorallocate($img, 0, 0, 0);//畫出畫布imagefilledrectangle($img, 1, 1, $width-2, $height-2, $white);//寫字$size=mt_rand(18,22);$angle=mt_rand(-3,3);$x=mt_rand(2,10);$y=mt_rand(20,28);$fontfiles='../font/simhei.ttf';$_SESSION['verify']=$str=randomStr();imagettftext($img, $size, $angle, $x, $y, $black,$fontfiles ,$str);//增加幹擾點for($i=0;$i<100;$i++){    $x=mt_rand(1,$width-1);    $y=mt_rand(1,$height-1);    $red=mt_rand(1,150);    $green=mt_rand(1,150);    $blue=mt_rand(1,150);    $color=imagecolorallocate($img, $red, $green, $blue);    imagesetpixel($img, $x, $y, $color);}//產生圖片header("content-type:image/gif");imagegif($img);imagedestroy($img);

請大神幫小弟看看是哪裡出了問題了!
搞得我毫無頭緒!
之前一直用得好好的,突然間就用不了了!
GD庫是開了的啊!

  • 相關文章

    聯繫我們

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