PNG/InterlaceMethod.cs

17 lines
294 B
C#
Raw Normal View History

2024-11-03 22:34:26 +01:00
namespace Uwaa.PNG;
/// <summary>
/// Indicates the transmission order of the image data.
/// </summary>
public enum InterlaceMethod : byte
{
/// <summary>
/// No interlace.
/// </summary>
None = 0,
/// <summary>
/// Adam7 interlace.
/// </summary>
Adam7 = 1
}