ImageMagick.MagickImage.NativeMagickImage.Clut C# (CSharp) Метод

Clut() публичный Метод

public Clut ( MagickImage image, PixelInterpolateMethod method, Channels channels ) : void
image MagickImage
method PixelInterpolateMethod
channels Channels
Результат void
      public void Clut(MagickImage image, PixelInterpolateMethod method, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_Clut(Instance, MagickImage.GetInstance(image), (UIntPtr)method, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_Clut(Instance, MagickImage.GetInstance(image), (UIntPtr)method, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public void ColorDecisionList(string fileName)
MagickImage.NativeMagickImage