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

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

public Moments ( ) : IntPtr
Результат IntPtr
      public IntPtr Moments()
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Moments(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Moments(Instance, out exception);
        #endif
        MagickException magickException = MagickExceptionHelper.Create(exception);
        if (MagickExceptionHelper.IsError(magickException))
        {
          if (result != IntPtr.Zero)
            ImageMagick.Moments.DisposeList(result);
          throw magickException;
        }
        RaiseWarning(magickException);
        return result;
      }
      public void Modulate(string modulate)
MagickImage.NativeMagickImage