我一直在尝试使用以下PHP代码生成imagettfbbox:
$font_path = "/var/www/lib/fonts/Arial.ttf";
$rect = imagettfbbox(10,0,$font_path,"Hello world!");
但是每次尝试我都会收到以下错误:
Warning (2): imagettfbbox() [function.imagettfbbox]: Unable to find a CharMap that I can handle
我通过phpinfo()确认了FreeType和GD支持。我找不到任何可能导致此问题的文档,并且此代码在早期版本的PHP上运行正常。我错过了别的什么吗?