PHP驗證碼不能生成圖片,原因解決
生成圖片時,header('Content-type: image/png');前面不能有輸出!!!
或者,前面加:ob_clean(); 即使用輸出也可以通過這句來清除輸出快取!很重要!!!
當然,首先要開啟gd2庫,可通過phpinfo檢視。清除了bom,程式碼也是頂行開始寫的,因此問題可能出現在程式碼上。後來經過研究,發現還是要更改一下程式,要在header前面加上ob_clean()這個語句,這樣就可以運行了!哈哈,編碼除錯程式如當醫生,百練成剛。
<?php
//設定 驗證碼高度寬度\上面字元個數
$img_w = 70;
$img_h = 22;
$font = 5;
$char_len = 5;
//數組合並, range()函式返回一個範圍陣列
$char = array_merge ( range ( 'a', 'z' ), range ( 'A', 'Z' ), range ( '1', '9' ) );
$rand_keys = array_rand ( $char, $char_len ); //隨機從陣列中取指定個數的元素,生成鍵值
if ($char_len == 1) { //若只有一個數,則array_rand()返回非陣列型別
$rand_keys = array ($rand_keys );
}
shuffle($rand_keys); //可以不用
$code = '';
foreach ( $rand_keys as $k ) {
$code .= $char [$k];
}
session_start ();
$_SESSION ['captcha'] = $code;
//新增線、色
//建立新影象
$img = imagecreatetruecolor ( $img_w, $img_h );
//分配顏色
$bg_color = imagecolorallocate ( $img, 0xcc, 0xcc, 0xcc );
//畫布背景色
imagefill ( $img, 0, 0, $bg_color );
//干擾線
for($i = 0; $i < 300; ++$i) {
$color = imagecolorallocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
imagesetpixel ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
}
for($i = 0; $i <= 10; ++ $i) {
//設定直線顏色
$color = imageColorAllocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
//在$img影象上隨機畫一條直線
imageline ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
//imagesetpixel($img,mt_rand(0,$img_w),mt_rand(0,$img_h),$color);
}
//加加框
$rect_color = imagecolorallocate ( $img, 0x90, 0x90, 0x90 );
imagerectangle ( $img, 0, 0, $img_w - 1, $img_h - 1, $rect_color );
$str_color = imagecolorallocate ( $img, mt_rand ( 0, 100 ), mt_rand ( 0, 100 ), mt_rand ( 0, 100 ) );
$font_w = imagefontwidth ( $font );
$font_h = imagefontheight ( $font );
$str_len = $font_w * $char_len;
imagestring ( $img, $font, ($img_w - $str_len) / 2, ($img_h - $font_h) / 2, $code, $str_color );
////設定字串顏色
$str_color = imageColorAllocate($img, mt_rand(0, 100), mt_rand(0, 100),mt_rand(0, 100));
//設定字串位置
$font_w = imageFontWidth($font); //字型寬
$font_h = imageFontHeight($font); //字型高
$str_w = $font_w * $char_len; //字串寬
imageString($img, $font, ($img_w-$str_w)/2, ($img_h-$font_h)/2, $code, $str_color);
echo 'ddd'; //輸出影響生成圖片,查找了大半天的原因終於找到了
ob_clean(); //也可以加上這句,這樣前面有輸出,清除輸出快取
//生成圖片
header ( 'Content-Type: image/png' );//header前不能加任何輸出或加ob_clean()清除
imagepng($img);
//----4 銷燬畫布
imagedestroy($img);