php utf8頁面驗證碼圖片中文亂碼

來源:互聯網
上載者:User

 

 代碼如下 複製代碼

<?
session_start();


//產生隨機數
for($i=0;$i<4;$i++){
$rand.=dechex(rand(1,15));
}
$_SESSION['checkpic']=$rand;

$im=imagecreatetruecolor(100,30);//畫板,建立一個真彩色映像

//設定顏色
$bg=imagecolorallocate($im,0,0,0);//紅,綠,藍 背景顏色
$te=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));//字型顏色

//畫線條
for($i=0;$i<3;$i++){
$te2=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imageline($im,rand(0,100),0,rand(0,100),30,$te2);//座標(x1,y1)到座標(x2,y2)
}

//畫點
for($i=0;$i<200;$i++){
imagesetpixel($im,rand()%100,rand()%30,$te2);
}


//輸出中文
$str=iconv("gbk","utf-8","新年快樂!");//確定要繪製的中文文字
imagettftext($im,12,3,20,20,$te,'msyhbd.ttf','中文en');

//把字串寫在映像左上方
//imagestring($im,5,rand(0,50),rand(0,15),$rand,$te);

//輸出映像
header("Content-type:image/jpeg");//檔案類型
imagejpeg($im);

 

?>

分析原因與解決辦法

 代碼如下 複製代碼

$str=iconv("gbk","utf-8","新年快樂!");//確定要繪製的中文文字
imagettftext($im,12,3,20,20,$te,'msyhbd.ttf','中文en');

-->>
應該這樣的

 代碼如下 複製代碼
$str=iconv("gbk","utf-8","新年快樂!");//確定要繪製的中文文字
imagettftext($im,12,3,20,20,$te,'msyhbd.ttf',$str);
相關文章

聯繫我們

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