当前位置:Gxlcms > PHP教程 > utf-8-phpimagettftext已经转码,中文不显示,英文显示正常,求大神指导!!!

utf-8-phpimagettftext已经转码,中文不显示,英文显示正常,求大神指导!!!

时间:2021-07-01 10:21:17 帮助过:4人阅读

utf-8phpgb2

附上代码。
header("Content-Type:image/jpeg");
$str="JJJJJ";
$con = iconv("GB2312", "UTF-8",$str);
$image=imagecreate(800,600);
$bgcolor=imagecolorallocate($image, 0, 200, 200);
$fontcolor=imagecolorallocate($image, 200, 80, 80);
$font='./Public/FONTS/songti.ttf';
imagettftext($image, 80, 5, 100, 130, $fontcolor, $font, $con);
imagejpeg($image);
imagedestroy($image);

人气教程排行