我在PHP中尝试Could not find/open font
时收到此错误imagettftext()
。
字体文件在那里。有什么问题?
答案 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);