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

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

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