// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) James South.
// Licensed under the Apache License, Version 2.0.
//
//
// The IQuantizableImageFormat interface for identifying quantizable image formats.
//
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor.Imaging.Formats
{
using ImageProcessor.Imaging.Quantizers;
///
/// The IndexedImageFormat interface for identifying quantizable image formats.
///
public interface IQuantizableImageFormat
{
///
/// Gets or sets the quantizer for reducing the image palette.
///
IQuantizer Quantizer { get; set; }
}
}