使用 php GD 库的图案化文本
我正在尝试使用 php gd 库创建看起来像这样的东西:
我已经弄清楚如何创建简单文本使用 gd 库,但我坚持如何在其中放入图案文本。
有人知道如何做到这一点吗?
Im trying to create something that looks like this using php gd library:
I've figured out how to create simple text using gd library, but im stuck on how to put a patterned text in it.
Anybody have any idea on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。为此,您需要使用掩码。这个网站有一个很好的例子: http://www.phpbuilder.com/columns/ cash20030526.php3?print_mode=1。滚动到页面底部的“纹理”部分以获取其解决方案。
Yes, this is possible. To do it, you need to uses masks. This website has a nice example: http://www.phpbuilder.com/columns/cash20030526.php3?print_mode=1. Scroll to the bottom of the page, to the "Textures" section for their solution.
您可以使用 Alpha 蒙版将文本创建为图像对象,然后将该蒙版应用到“填充”图像的实体图像上,
查看 alpha 混合 此处
you could create your text as a image object with Alpha mask then apply that mask on a solid image of your "fill" image
check out alpha blending here