ImageMagick.PerceptualHash.NativePerceptualHash.GetInstance C# (CSharp) Метод

GetInstance() публичный статический Метод

public static GetInstance ( MagickImage image, IntPtr list, PixelChannel channel ) : IntPtr
image MagickImage
list System.IntPtr
channel PixelChannel
Результат System.IntPtr
      public static IntPtr GetInstance(MagickImage image, IntPtr list, PixelChannel channel)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return NativeMethods.X64.PerceptualHash_GetInstance(MagickImage.GetInstance(image), list, (UIntPtr)channel);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return NativeMethods.X86.PerceptualHash_GetInstance(MagickImage.GetInstance(image), list, (UIntPtr)channel);
        #endif
      }
    }
PerceptualHash.NativePerceptualHash