imagefttext()[function.imagefttext]:无法找到/打开字体

时间:2013-07-22 10:42:16

标签: php gd facebook-apps freetype

我试图使用带有freetype的gd库在我的图像上为facebook app写一些文本(找到下面的代码)但是我遇到了错误: 警告:imagettftext()[function.imagettftext]:无法在第49行的/home/xxx/public_html/yyy/zzz/abc.php中找到/打开字体

规格: PHP版本5.3.26 已启用GD支持 捆绑的GD版本(2.1.0兼容) 启用FreeType支持 FreeType链接与freetype FreeType版本2.3.11

我发现了类似'--with-freetype-dir = / usr'的内容

我的代码:

$font='arial.ttf';
$text_color = imagecolorat($unprocessedimagejpeg,317,165);
imagettftext($unprocessedimagejpeg, 16,0,0,16,$text_color,$font,'This is the text');
/*I also tried
putenv('GDFONTPATH=' . realpath('.'));
$font = 'arial.tff'; but to no avail
*/

出现错误的问题是什么? 我应该包含php文件中的freetype吗? (怎么样) 我应该知道我的字体文件的完整路径吗? 如何进行?提前致谢! 还有什么是arial.tff的路径?或所有可用的字体?

0 个答案:

没有答案