如何使用 php gd 加载和重复图像?
假设我有一张宽度为 1px、高度为 40px 的图像。 我想用 imagecreatefrompng 加载它并希望 x 重复它,就像 css Repeat-x 一样。
PHP GD 可以做到这一点吗?
Suppose i have an image with width 1px and height 40px.
I want to load it with lets say imagecreatefrompng and want to x-repeat it, just like css repeat-x.
Is this possible with PHP GD?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须指定输出图像的宽度,我选择了
1024
来演示:You have to specify width of output image, I have chosen
1024
to demonstrate: