我可以通过编程方式确定 GD 可以使用哪些字体吗?

发布于 2024-09-13 07:02:44 字数 388 浏览 3 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不疑不惑不回忆 2024-09-20 07:02:44

"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".

懒猫 2024-09-20 07:02:44

如果您可以使用 Imagemagick,总有那个

If you can use Imagemagick there is always that

水波映月 2024-09-20 07:02:44

字体可以是任何地方,但您必须指定 arial.ttf 的完整路径。

The fonts can be anywhere,but you must specify the full path to arial.ttf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文