在 Python 中将 32 位 TIFF 转换为另一种格式
我需要将 32 位 TIFF 文件(或相应的 int32 数组)转换为 Tkinter 可以显示的另一种格式(如 gif fe)
我该怎么做?将数组转换为 int16 左右会使图片完全模糊......
I need to convert a 32 bit TIFF file (or the corresponding int32 array) to another format that Tkinter can display (like gif fe)
How do I do that? Converting the array to int16 or so completely blurs the picture...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PIL 是你最好的朋友。
PIL is your best friend.
您可以使用 PIL、Image Magick,或 GraphicsMagick
GraphicsMagic 和 ImageMagick 是命令行程序,有 python 版本。我使用 Graphics Magic 因为它很简单。 ImageMagick 几乎是 Photoshop 的命令行版本...
You can use PIL, Image Magick, or GraphicsMagick
GraphicsMagic and ImageMagick are command-line programs and have python versions. I use Graphics Magic because it is simple. ImageMagick is almost a command-line version of photoshop...