在 PHP 中将 PNG 放在 JPG 上
我想在 PHP 中执行以下操作:
我有两个图像,一个 jpg 和一个 png。我想将jpg的大小调整为与png的大小相同,然后将png放在上面。 PNG 具有透明度,所以我想保留它,以便 jpg 显示在下面。
如果有人可以提供帮助那就太好了!
谢谢
I want to do the following in PHP:
I have two images, a jpg and a png. I want to resize the jpg to the same size as the png then put the png on top. The PNG has transparency so I would like to preserve that so the jpg shows underneath.
If anyone could help that would be great!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我使用的工作代码
This is the working code which i using
这是将透明水印叠加到图像上的示例的链接。可能是您的用例,可能相关。
http://www.php.net/manual/en/ image.examples.merged-watermark.php
还有一种方法可以在 GD 中加载 JPG 图像、调整图像大小、打开 alpha 跟踪以及导出图像。
雅各布
Here is a link to an example that will overlay a transparent watermark onto an image. Might be your use case, might be related.
http://www.php.net/manual/en/image.examples.merged-watermark.php
There is also a way to load JPG images, resize images, turn on alpha tracking, and export images in GD.
Jacob