将几个 jpg(和一个 txt)合并到一个 jpg 文件中
我的网站上有一种画布(虽然不是画布,但需要 IE 的支持),图像可以在其中加载和修改。
在该过程结束时,我想获取画布中使用的所有文件并将它们连接到一个(更大的)jpg 中。
我的想法是收集图像的所有相对位置,并用它来将它们重新定位在新文件上。 我还应该补充一点,其中一个文件是背景图像。
图层数不应超过 4(包括背景)。
最重要的是,我还需要对文本图层进行 jpg 化,但为此我有一个 php 脚本,如果有人有有效的方法来做到这一点,我也会很高兴看到它。
I have a sort of a canvas on my site, (not canvas though for the need of support in IE) where images are loaded to and modified.
At the end of the process I'd like to take all the files used in the canvas and connect them into a (bigger) jpg.
My thoughts were to collect all the relative positions of the images and use it to reposition them on the new file.
I should add as well that one of the files is a background image.
layers should not count more than lets say 4 including the background.
on top of that i needed to jpg-ize a text layer as well but for that I have a php script, if anyone has an efficient way to do it I'll be glad to see it as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 GD 或 ImageMagic< /a> PHP 扩展。两者都允许这样做。
Look at GD or ImageMagic PHP extensions. Both allow to do that.
以下是如何在 imagemagick 中进行图像叠加的示例 。您可以在
convert
参数中指定叠加层的缩放比例和位置。Here is an example of how to do image overlays in imagemagick. You can specify the scaling and position of the overlay in the
convert
parameters.