在 python 中处理 Group4 TIFF 图像

发布于 2024-11-29 13:36:39 字数 170 浏览 2 评论 0原文

PIL 本身不支持 G4 图像,是否有其他 python 包支持?我需要读取多页 TIFF 图像并将它们即时转换为 gif/png 以在网页中提供。 (我不会即时转换它们,而是挑选它们进行展示)。

我考虑过使用具有转换能力的 ImageMagick,但我希望能够访问 TIFF 文件并查看其中的内容以进行索引。

PIL doesn't natively support G4 images, is there some other python package that does? I need to read multi-page TIFF images and pull convert them into gif/png on the fly to serve up in a web page. (I'm not converting them all on the fly, but cherry picking them for display).

I've considered using ImageMagick which has that conversion ability, but I'd like to be able to reach into the TIFF files and see what is inside them for indexing.

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

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

发布评论

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

评论(2

ぃ弥猫深巷。 2024-12-06 13:36:39

使用 PythonMagick

from PythonMagick import Image
Image('CCITT_4.TIF[0]').write("PNG8:CCITT_4.PNG")

Using PythonMagick:

from PythonMagick import Image
Image('CCITT_4.TIF[0]').write("PNG8:CCITT_4.PNG")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文