如何找出 FreeImage 中 TIFF 图像的压缩情况?
我使用 FreeImage 处理多页 TIFF 文件,有时我在 FIBITMAP
中有一个 TIFF 页面,我需要知道它的压缩情况。知道如何做到这一点吗?
I use FreeImage to work with multipage TIFF files and at some point I have a TIFF page, in a FIBITMAP
and I need to know its compression. Any idea how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FreeImage 没有内置函数来显示 tiff 文件压缩方案,但是您可以使用 Exif 元数据来弄清楚(dib 是本地 FIBITMAP 变量,这是 C# 代码):
FreeImage has no built in function to reveal the tiff file compression scheme, however you can use Exif metadata to figure that out (dib is local FIBITMAP variable, this is c# code):