PHP:如何在另一个图像上绘制图像?

发布于 2024-08-04 13:39:30 字数 531 浏览 3 评论 0原文

我正在使用 PHP 和GD图书馆。

我想画一张图像(说这个: http ://www.gravatar.com/avatar/107f2fafb2d29fedc3783b141139a878?s=128&d=identicon&r=PG)在另一张图片上:http://www.geekpedia.com/gallery/fullsize/simplistic-windows-wallpaper.jpg 在指定坐标(左上角或右上角或图像中的任何位置)。

如何使用 PHP 和 GD 库来做到这一点。

I am using PHP & GD library.

I want to draw an image (say this one: http://www.gravatar.com/avatar/107f2fafb2d29fedc3783b141139a878?s=128&d=identicon&r=PG) over another image: http://www.geekpedia.com/gallery/fullsize/simplistic-windows-wallpaper.jpg at specified coordinates (top-left or top-right or anywhere in the image).

How to do that using PHP and GD library.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情绪 2024-08-11 13:39:30

imagecopy()imagecopymerge()。它的文档也提供了示例。

imagecopy() or imagecopymerge(). It's documentation brings exemples too.

九局 2024-08-11 13:39:30

imagecopyresampled()imagecopyresized() 应该完全符合您的要求。
(尽管有它的名字,imagecopyresampled 也会调整大小。)
他们获取部分或全部源图像,调整其大小,然后将其复制到目标图像中。
如果源图像不是正方形,您可以在复制时对其进行裁剪或扭曲。

imagecopyresampled() or imagecopyresized() should do exactly what you want.
(Despite its name, imagecopyresampled does resize as well.)
They take some or all of the source image, resize it, and copy it into the destination image.
If the source image isn't square, you can either crop or distort it as it is copied.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文