AcademySoftwareFoundation/openexr
Describe new compression method API in documentation
开放
#1,859 创建于 2024年10月2日
help wanted
仓库指标
- 星标
- (1,812 个星标)
- PR 合并指标
- (PR 指标待抓取)
描述
Add to https://openexr.com/en/latest/ReadingAndWritingImageFiles.html#compression, source is here.
In anticipation of future support for new compression types, there is now a convenience API for mapping between compression type names and the associated enum:
getCompressionDescriptionFromId(Compression, std::string&)
getCompressionIdFromName(const std::string&, Compression&)
getCompressionNameFromId(Compression, std::string&)
getCompressionNamesString(const std::string&, std::string&)
getCompressionNumScanlines(Compression)
isValidCompression(int)