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

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

public PerceptualHash ( ) : IntPtr
Результат IntPtr
      public IntPtr PerceptualHash()
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_PerceptualHash(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_PerceptualHash(Instance, out exception);
        #endif
        MagickException magickException = MagickExceptionHelper.Create(exception);
        if (MagickExceptionHelper.IsError(magickException))
        {
          if (result != IntPtr.Zero)
            ImageMagick.PerceptualHash.DisposeList(result);
          throw magickException;
        }
        RaiseWarning(magickException);
        return result;
      }
      public void Polaroid(DrawingSettings settings, string caption, double angle, PixelInterpolateMethod method)
MagickImage.NativeMagickImage