Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在一些 Qt 项目中读写 TIFF(32 位样本)。我试过libtiff,但它们只支持 BitsPerSample=1、2、4、8 或 16 的 TIFF 图像。
当我使用它们读取具有 32 位样本的 TIFF 时,我收到提示“抱歉,无法处理具有 32 位样本的图像”。
是否有任何 C/C++ 库支持使用 32 位样本读取/写入 TIFF?
请记住,您的问题是题外话。
但无论如何,FLTK 是能够做到的。
见http://www.fltk.org/index.php
你为什么不使用QImage?它具有 load()和 save() 操作。还支持读写tiff。