mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
LibGfx/TIFF: Add support for the SamplesPerPixel tag
This commit is contained in:
parent
d9b69c644e
commit
923d9e834f
1 changed files with 1 additions and 0 deletions
|
@ -56,6 +56,7 @@ known_tags: List[Tag] = [
|
|||
Tag('258', [TIFFType.UnsignedShort], [], None, "BitsPerSample"),
|
||||
Tag('259', [TIFFType.UnsignedShort], [1], None, "Compression", Compression),
|
||||
Tag('273', [TIFFType.UnsignedShort, TIFFType.UnsignedLong], [], None, "StripOffsets"),
|
||||
Tag('277', [TIFFType.UnsignedShort], [1], None, "SamplesPerPixel"),
|
||||
Tag('278', [TIFFType.UnsignedShort, TIFFType.UnsignedLong], [1], None, "RowsPerStrip"),
|
||||
Tag('279', [TIFFType.UnsignedShort, TIFFType.UnsignedLong], [], None, "StripByteCounts"),
|
||||
Tag('317', [TIFFType.UnsignedShort], [1], Predictor.NoPrediction, "Predictor", Predictor),
|
||||
|
|
Loading…
Add table
Reference in a new issue