如何以编程方式将多张图像合并为一张?
我正在寻找一种方法来编写一个脚本,该脚本将获取大约 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageMagick 库和工具都支持这一点。
示例链接:
或者
您也可以将重叠照片混合在一起,如这篇文章。
The ImageMagick libraries and tools both support this.
Example link:
Or
You can also blend over lapping photo's togeather as listed in this article.