Dede后臺驗證碼只顯示背景,不顯示字母的解決方法:
打開驗證碼生成文件 Include/vdimgck.php,找到:
for($i=0;$i<$rndcodelen;$i++)
{
$bc = mt_rand(0, 1);
$rndstring[$i] = strtoupper($rndstring[$i]);
$c_fontColor = $fontColor[mt_rand(0,4)];
$y_pos = $i==0 ? 4 : $i*($font_size+2);
$c = mt_rand(0, 15);
@imagettftext($im, $font_size, $c, $y_pos, 19, $c_fontColor, $font_file, $rndstring[$i]);
$lastc = $rndstring[$i];
}
Imagettftext() 函數(shù)沒有成功的執(zhí)行導(dǎo)致了驗證碼只顯示背景,不顯示字母。
具體原因為:字體文件路徑不對,解決方法如下。
1、確認include/data/fonts/ 里面存在字體文件 默認為ggbi.ttf
2、在for($i=0;$i<$rndcodelen;$i++) 上一行 加上如下代碼:
$font_file= str_replace("\\","/",$font_file);
即把字體文件路徑中反斜杠替換成斜杠 因為我們知道反斜杠有轉(zhuǎn)譯字符的功能,
$font_file 路經(jīng)大體為 盤符:\appserv\www 系統(tǒng)錯誤的把反斜杠 當(dāng)作轉(zhuǎn)義用了 導(dǎo)致$font_file也就不是一個路徑了 所以Imagettftext()函數(shù)總是返回錯誤
加上$font_file= str_replace("\\","/",$font_file);即可解決
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: dede驗證碼只顯示背景不顯示圖片解決方法