Browse Source

Adding missed interface

Former-commit-id: 1215561609b3f3c4167d2ac546856389eaf2d781
Former-commit-id: 3be21bf118dd484c8108dd4e3aeb30dd010a27f4
af/merge-core
James South 11 years ago
parent
commit
36423aaa1e
  1. 1
      src/ImageProcessor/ImageProcessor.csproj
  2. 25
      src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs

1
src/ImageProcessor/ImageProcessor.csproj

@ -159,6 +159,7 @@
<Compile Include="Common\Exceptions\ImageFormatException.cs" />
<Compile Include="ImageFactory.cs" />
<Compile Include="Imaging\AnchorPosition.cs" />
<Compile Include="Imaging\Formats\IIndexedImageFormat.cs" />
<Compile Include="Imaging\Helpers\ImageMaths.cs" />
<Compile Include="Imaging\ImageLayer.cs" />
<Compile Include="Imaging\MetaData\ExifPropertyTagType.cs" />

25
src/ImageProcessor/Imaging/Formats/IQuantizableImageFormat.cs

@ -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…
Cancel
Save