我可以通过编程方式确定 GD 可以使用哪些字体吗?
我想使用 GD 将文本放在图像上。
当我使用时
ImageTTFText($image, $fontSize, $fontRotation, 7, 22, $colorShadow, 'arial.ttf', $str);
我得到
警告:imagettftext() [function.imagettftext]:无法 查找/打开字体 /home/index.php 第 17 行
我可以让 PHP 或 GD 返回我系统中所有可用字体的列表吗?
谢谢
更新
...或者我需要自己上传我希望 GD 能够访问的所有字体吗?
I want to put text over an image using GD.
When I use
ImageTTFText($image, $fontSize, $fontRotation, 7, 22, $colorShadow, 'arial.ttf', $str);
I get
Warning: imagettftext()
[function.imagettftext]: Could not
find/open font in
/home/index.php
on line 17
Can I get PHP or GD to return a list of all available fonts per my system?
Thanks
Update
... or do I need to upload myself all the fonts myself that I wish GD to have access to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
"arial.ttf"
替换为"./arial.ttf"
,因为"arial.ttf"
是绝对路径,您需要一个相对路径。在此处了解有关 imagettftext 的更多信息。要回答您的更新,是的,您确实需要该目录中的字体文件。这是一个非常酷的查找字体的网站(如 arial.ttf): http://www.1001freefonts.com/
从那里下载字体文件,将其放入脚本文件夹中,然后将“arial.ttf”替换为“./filename.ttf”。
Replace
"arial.ttf"
with"./arial.ttf"
, because"arial.ttf"
is an absolute path and you need a relative path. Read more on imagettftext here.To answer your update, yes, you do need the font files in that directory. Here is a really cool site for finding fonts (like arial.ttf): http://www.1001freefonts.com/
Download a font file from there, put it in the folder of your script, and then replace "arial.ttf" with "./filename.ttf".
如果您可以使用 Imagemagick,总有那个
If you can use Imagemagick there is always that
字体可以是任何地方,但您必须指定 arial.ttf 的完整路径。
The fonts can be anywhere,but you must specify the full path to arial.ttf.