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

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

public Compare ( MagickImage image, ErrorMetric metric, Channels channels, double &distortion ) : IntPtr
image MagickImage
metric ErrorMetric
channels Channels
distortion double
Результат System.IntPtr
      public IntPtr Compare(MagickImage image, ErrorMetric metric, Channels channels, out double distortion)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_Compare(Instance, MagickImage.GetInstance(image), (UIntPtr)metric, (UIntPtr)channels, out distortion, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_Compare(Instance, MagickImage.GetInstance(image), (UIntPtr)metric, (UIntPtr)channels, out distortion, out exception);
        #endif
        CheckException(exception, result);
        return result;
      }
      public void Contrast(bool enhance)
MagickImage.NativeMagickImage