我使用GD库在图像文件上写希腊字符。 imagettftext
$font = $_SERVER['DOCUMENT_ROOT'].'/fonts/greek.ttf';
$top = '125';
$left='120';
$color = imagecolorallocate($outputImage, 0, 0, 0);
imagettftext($outputImage, 40, 0, $left, $top, $color, $font, 'Δ Γ Δ Γ');
所以,我的问题是我应该在这里使用哪些字体,或者其他什么导致这种?我甚至在生成图像的函数中尝试了header('Content-Type: text/html; charset=utf-8');
。
参考:
答案 0 :(得分:0)
来自the docs:
如果字符串中使用的字符不受字体支持,则空心矩形将替换该字符。
看来,那个:
答案 1 :(得分:0)
令人惊讶地使用arial.ttf
字体。