警告:imageftbbox() [function.imageftbbox] - 这是什么错误
我的图像生成脚本出现此错误:
警告:imageftbbox() [function.imageftbbox]:加载字形时出现问题:
我认为因此我无法正确从文本生成图像 - 我该如何解决这个问题!
I got this error on my image generation script :
Warning: imageftbbox() [function.imageftbbox]: Problem loading glyph:
I think because of this I can't generate images from text properly - how do I fix this!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
加载字体文件时出现问题。 检查路径、文件名等。
there was a problem loading a font file. check the path, filename etc.
如果路径/文件名有问题,您将收到“无效字体文件名”警告。
“加载字形时出现问题”意味着文件格式存在实际问题,即 FT_Load_Glyph 无法解释字体定义。
If there is a problem with the path/filename you'll get a "Invalid font filename" warning.
"Problem loading glyph" means that there is an actual problem with the file's format, i.e. FT_Load_Glyph of the gd library wasn't able to interpret the font definition.
您的 php 版本可能不是使用 freetype2 编译的。 通过使用 php 脚本运行 phpinfo() 来检查 php 构建的配置选项。
Your php build is probably not compiled with freetype2. Check the config options of your php build by running phpinfo() withing a php script.