PHP Image Magick / 文本转 PNG - 多行和多行在 image-build 中切换字体
问候。
对于 PHP 项目,我必须构建 PNG 图像,在其中传递一些文本,然后让 imagick 为该文本生成图像。我在 gd 中成功地完成了此类工作,但只有 1 种字体(每个文本生成块)可供使用。
由于我想在生成此文本块时在 2+ 字体之间进行更改,因此我在 Google 中阅读了很多内容,但找不到此问题的解决方案。
有没有人可以指出我正确的方向 - 或者甚至发布一些示例代码(如果可能的话)。
谢谢你。
Greetings.
For a PHP-Project, I have to build PNG-images where I pass some text and then let imagick generate the image for that text. I did this kind of stuff with success in gd, but only had 1 font (per text-generation-block) to play with.
As I want to change between 2+ fonts while generating this textblock I read a lot in Google, but could not find a solution to this problem.
Is there somebody out there who can point me into the correct direction - or even post some sample-code, if possible.
Thanks for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解你的问题,但为什么你必须使用 imagick?你不能只使用 imagepng、imagettftext 和 imagecreate 吗?
imagettftext 将字体作为第七个参数:
http://php.net/manual/en /function.imagettftext.php
I am not sure if I understand your question, but why do you have to use imagick? Can't you just use imagepng, imagettftext and imagecreate.
imagettftext takes a font as the seventh parameter:
http://php.net/manual/en/function.imagettftext.php