c++ - 是否有任何 C++ 函数允许我将 tiff 格式转换为原始图像?

标签 c++

原始图像应读取 tiff 标签编号.. 谢谢。

最佳答案

查看 LibTIFF - 来自手册:

libtiff is a set of C functions (a library) that support the manipulation of TIFF image files. The library requires an ANSI C compilation environment for building and presumes an ANSI C environment for use.

libtiff provides interfaces to image data at several layers of abstraction (and cost). At the highest level image data can be read into an 8-bit/sample, ABGR pixel raster format without regard for the underlying data organization, colorspace, or compression scheme. Below this high-level interface the library provides scanline-, strip-, and tile-oriented interfaces that return data decompressed but otherwise untransformed. These interfaces require that the application first identify the organization of stored data and select either a strip-based or tile-based API for manipulating data. At the lowest level the library provides access to the raw uncompressed strips or tiles, returning the data exactly as it appears in the file.

关于c++ - 是否有任何 C++ 函数允许我将 tiff 格式转换为原始图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1284003/

相关文章:

c++ - 如何在整个单词中搜索包含三个以上相同字母的单词

c++ - 在 C++ 中通过引用传递的两种方式?

c++ - 在 C++ 中免费分析?

c++ - 自动将 C++ 类重构为单独的文件

c++ - 检查 Char/Int

c++ - shared_ptr 的自定义删除器的附加参数

c++ - 使用strtok函数时出现的问题

c++ - 在 Windows 上生成硬件 ID

c++ - 在函数中从 Vector 中删除元素

C++ 包括 C 文件(未找到 typedef)