使用PHP gd时“无法找到/打开字体”

时间:2010-09-28 05:22:33

标签: php fonts gd

我在PHP中尝试Could not find/open font时收到此错误imagettftext()

字体文件在那里。有什么问题?

1 个答案:

答案 0 :(得分:10)

我在字节http://bytes.com/topic/php/answers/4833-gd-could-not-find-open-font-font-problem

上找到答案

设置gdfontpath可能有帮助

$fontpath = realpath('.'); //replace . with a different directory if needed
putenv('GDFONTPATH='.$fontpath);
$font = 't.otf';
...
$box = imagettfbbox($size, 0, $font, $text);