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

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

public AutoLevel ( Channels channels ) : void
channels Channels
Результат void
      public void AutoLevel(Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_AutoLevel(Instance, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_AutoLevel(Instance, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public void AutoOrient()
MagickImage.NativeMagickImage