将一个图像放在另一个图像之上
有没有办法将一个图像放置在另一个图像的顶部以生成一个图像?
Is there a way to place an image on the top of an other to produce one image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法将一个图像放置在另一个图像的顶部以生成一个图像?
Is there a way to place an image on the top of an other to produce one image?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
imagecopy()
可以做到这一点imagecopy()
can do that如果您可以在 HTML 中覆盖图像,那么只需使用 CSS 将两个
标记放在彼此的顶部即可;顶部的透明(或半透明)区域会让后面的区域显示出来。简单的。
但是,如果您实际上想输出单个合并图像(正如您使用“gd”标签所建议的那样),是的,可以做到。当然,您需要编写一些代码!
这是讨论如何执行此操作的页面链接。 (那里有很多讨论,因此链接到它比尝试自己总结要容易)
If you can get away with overlaying the images in your HTML, then just use CSS to position two
<img>
tags on top of each other; the transparent (or semi-transparent) areas of the one on top will let the one behind show through. Easy.However, if you actually want to output a single merged image (as your use of the 'gd' tag suggests), yes it can be done. You will need to write some code, of course!
Here is a link to pages which discusses how to do it. (there's quite a bit of discussion there, so it's easier to link to it than try to summarise it myself)