Add TIFF compression codecs: LZMA, Zstd, WebP

This commit is contained in:
cgohlke 2019-01-06 19:49:00 -08:00 committed by GitHub
parent b97f9c4fcf
commit c0f4382af2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,6 +133,9 @@ COMPRESSION_INFO = {
32946: "tiff_deflate",
34676: "tiff_sgilog",
34677: "tiff_sgilog24",
34925: "lzma",
50000: "zstd",
50001: "webp",
}
COMPRESSION_INFO_REV = {v: k for k, v in COMPRESSION_INFO.items()}