Merge pull request #3555 from cgohlke/patch-1

Add TIFF compression codecs: LZMA, Zstd, WebP
This commit is contained in:
Hugo 2019-02-20 11:51:33 +02:00 committed by GitHub
commit 78b7038a9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,6 +135,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()}