From 102dce72ed3e2b48c68d4e0a57d0e02609dfa6b9 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sun, 24 Jun 2018 01:57:33 +1000 Subject: [PATCH] Stub color table mode enum. --- .../Formats/Gif/GifColorTableMode.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ImageSharp/Formats/Gif/GifColorTableMode.cs 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 + } +}