Dre*_*eur 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);
Run Code Online (Sandbox Code Playgroud)