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

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

public UniqueColors ( ) : IntPtr
Результат IntPtr
      public IntPtr UniqueColors()
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_UniqueColors(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_UniqueColors(Instance, out exception);
        #endif
        CheckException(exception, result);
        return result;
      }
      public void UnsharpMask(double radius, double sigma, double amount, double threshold, Channels channels)
MagickImage.NativeMagickImage