在 PHP 中将一张图像添加到另一张图像的底部
我想在 php 中将一张图像添加到另一张图像的底部
我用这个来加载图像:
//load top
$top = @imagecreatefrompng($templateTop);
//load bottom
$bottom = @imagecreatefrompng($templateBottom);
现在我想将它们添加到一张图片中并一起显示顶部和底部。
我可以用什么方法来做到这一点?
谢谢!
I'd like to add one image to the bottom of another in php
I've this to load the images:
//load top
$top = @imagecreatefrompng($templateTop);
//load bottom
$bottom = @imagecreatefrompng($templateBottom);
Now I'd like to add them to one picture and display top and bottom together.
What way can I do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 imagecopy:
Use imagecopy:
为了实现这一目标,你必须
a) 合并图像并将结果存储在文件中
b) 生成一个合适的标签来指向它。
c) 避免再次使用该文件名,直到该人离开。
如果您只想将两个图像组合一次,请使用图像魔法。
如果您经常想要一张一张地显示两个图像,请使用合适的 html 来执行此操作,并让浏览器执行此操作。
例如,将图像放入
您以正常方式使用 php 生成的图像中。
(这比让标签出现在这里更容易:)
To achieve this you would have to
a) Combine the image and store the result in a file
b) generate a suitable tag to point to it.
c) Avoid using that filename again, until that person had left.
If you want to combine two images just once, then use image magic.
If you frequently want to display two images one under the other, do so using suitable html, and let the browser do it.
E.g. Put the images in a
which you generate with php in the normal way.
(Which is easier than getting tags to appear here :)