1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:17:36 +00:00

LibGfx/TIFF: Accept the PixarDeflate compression tag

I would have liked to avoid adding a deprecated tag but this is the one
currently in use in Krita.
This commit is contained in:
Lucas CHOLLET 2024-01-16 00:01:34 -05:00 committed by Andreas Kling
parent 3afbf66295
commit 284e785053
2 changed files with 3 additions and 1 deletions

View file

@ -58,6 +58,7 @@ class Compression(EnumWithExportName):
JPEG = 6
AdobeDeflate = 8
PackBits = 32773
PixarDeflate = 32946 # This is the old (and deprecated) code for AdobeDeflate
class PhotometricInterpretation(EnumWithExportName):