mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 1215561609b3f3c4167d2ac546856389eaf2d781 Former-commit-id: 3be21bf118dd484c8108dd4e3aeb30dd010a27f4af/merge-core
2 changed files with 26 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
// --------------------------------------------------------------------------------------------------------------------
|
|||
// <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; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue