使用 Python 创建多页 TIFF

发布于 2024-09-08 09:40:55 字数 297 浏览 4 评论 0原文

已经有人问过这个问题 这里,但我一直在寻找一个适用于 Linux 的解决方案。是 tiffcp 唯一的方法吗?

This has already been asked here, but I was looking for a solution that would work on Linux.. Is tiffcp the only way?

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

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

发布评论

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

评论(3

转瞬即逝 2024-09-15 09:40:55

看起来 ImageMagick 可以做到。解决方案本质上是相同的;从命令行调用它。

具体来说,您需要 -adjoin 选项(由默认)。该命令将类似于:

convert *.tiff my_combined_file.tiff

Looks like ImageMagick can do it. The solution is essentially the same; call it from the command line.

Specifically, you want the -adjoin option (which is on by default). The command will look something like:

convert *.tiff my_combined_file.tiff
鲜血染红嫁衣 2024-09-15 09:40:55

还没尝试过,但是有 pylibtiff,这是 libtiff 库的 python 包装器其中 tiffcp 已实现。

Haven't tried it, but there is pylibtiff, a python wrapper for the libtiff library on which tiffcp is implemented.

夏雨凉 2024-09-15 09:40:55

我知道这是一个老问题,但是 convert 的缺点是它会重新压缩图像。您可以使用 python tifftools 包来执行此操作,而无需重新压缩图像:tifftools merge *.tiff linked_file.tiff

免责声明:我是 tifftools 包的作者。

I know this is an old question, but convert has the drawback that it recompresses the images. You can use the python tifftools package to do this without recompressing the images: tifftools merge *.tiff combined_file.tiff.

Disclaimer: I am the author of the tifftools package.

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