在 python 中处理 Group4 TIFF 图像
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅这篇关于针对 PIL 的补丁的文章,此项目包装 FreeImage,以及 此项目包装 libtiff。
See this post about a patch against PIL, this project to wrap FreeImage, and this project to wrap libtiff.
使用 PythonMagick:
Using PythonMagick: