如何以编程方式将多张图像合并为一张?

发布于 2024-07-13 13:45:16 字数 148 浏览 7 评论 0原文

我正在寻找一种方法来编写一个脚本,该脚本将获取大约 400 张 png 图像并将它们合并/组合成一个。

我花了几天时间尝试 Python 和 C++ 的图像处理库,但都失败了。

如果有人可以向我指出您知道具有此功能的特定语言或库,那就太棒了。

I am looking for a way to write a script that will take around 400 png images and merge/combine them into one.

I have spent days playing and failing with image processing libraries for Python and C++.

If anyone could point me to a specific language or library that you know has this feature that would be awesome.

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

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

发布评论

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

评论(1

盗心人 2024-07-20 13:45:16

ImageMagick 库和工具都支持这一点。

示例链接

 montage -background #336699 -geometry +4+4 rose.jpg red-ball.png montage.jpg

或者

convert image1.jpg image2.jpg +append output.jpg

您也可以将重叠照片混合在一起,如这篇文章。

The ImageMagick libraries and tools both support this.

Example link:

 montage -background #336699 -geometry +4+4 rose.jpg red-ball.png montage.jpg

Or

convert image1.jpg image2.jpg +append output.jpg

You can also blend over lapping photo's togeather as listed in this article.

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