📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
820 B

// <copyright file="TiffCompression.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageSharp.Formats
{
/// <summary>
/// Enumeration representing the compression formats defined by the Tiff file-format.
/// </summary>
internal enum TiffCompression
{
// TIFF baseline compression types
None = 1,
Ccitt1D = 2,
PackBits = 32773,
// TIFF Extension compression types
CcittGroup3Fax = 3,
CcittGroup4Fax = 4,
Lzw = 5,
OldJpeg = 6,
// Technote 2
Jpeg = 7,
Deflate = 8,
OldDeflate = 32946,
// TIFF-F/FX Extension
ItuTRecT82 = 9,
ItuTRecT43 = 10
}
}