diff --git a/src/ImageSharp/Formats/Gif/GifColorTableMode.cs b/src/ImageSharp/Formats/Gif/GifColorTableMode.cs new file mode 100644 index 000000000..aa4192863 --- /dev/null +++ b/src/ImageSharp/Formats/Gif/GifColorTableMode.cs @@ -0,0 +1,21 @@ +// Copyright (c) Six Labors and contributors. +// Licensed under the Apache License, Version 2.0. + +namespace SixLabors.ImageSharp.Formats.Gif +{ + /// + /// Provides enumeration for the available Gif color table modes. + /// + public enum GifColorTableMode + { + /// + /// A single color table is calculated from the first frame and reused for subsequent frames. + /// + Global, + + /// + /// A unique color table is calculated for each frame. + /// + Local + } +}