mirror of https://github.com/SixLabors/ImageSharp
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.
25 lines
953 B
25 lines
953 B
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="IIndexedImageFormat.cs" company="James South">
|
|
// Copyright (c) James South.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
// <summary>
|
|
// The IQuantizableImageFormat interface for identifying quantizable image formats.
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace ImageProcessor.Imaging.Formats
|
|
{
|
|
using ImageProcessor.Imaging.Quantizers;
|
|
|
|
/// <summary>
|
|
/// The IndexedImageFormat interface for identifying quantizable image formats.
|
|
/// </summary>
|
|
public interface IQuantizableImageFormat
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the quantizer for reducing the image palette.
|
|
/// </summary>
|
|
IQuantizer Quantizer { get; set; }
|
|
}
|
|
}
|
|
|