mirror of https://github.com/SixLabors/ImageSharp
3 changed files with 24 additions and 59 deletions
@ -1,27 +0,0 @@ |
|||
// Copyright (c) Six Labors.
|
|||
// Licensed under the Six Labors Split License.
|
|||
|
|||
using SixLabors.ImageSharp.Processing.Processors.Quantization; |
|||
|
|||
namespace SixLabors.ImageSharp.Formats.Gif; |
|||
|
|||
/// <summary>
|
|||
/// The configuration options used for encoding gifs.
|
|||
/// </summary>
|
|||
internal interface IGifEncoderOptions |
|||
{ |
|||
/// <summary>
|
|||
/// Gets the quantizer used to generate the color palette.
|
|||
/// </summary>
|
|||
IQuantizer Quantizer { get; } |
|||
|
|||
/// <summary>
|
|||
/// Gets the color table mode: Global or local.
|
|||
/// </summary>
|
|||
GifColorTableMode? ColorTableMode { get; } |
|||
|
|||
/// <summary>
|
|||
/// Gets the <see cref="IPixelSamplingStrategy"/> used for quantization when building a global color table.
|
|||
/// </summary>
|
|||
IPixelSamplingStrategy GlobalPixelSamplingStrategy { get; } |
|||
} |
|||
Loading…
Reference in new issue