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

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

public Level ( double blackPoint, double whitePoint, double gamma, Channels channels ) : void
blackPoint double
whitePoint double
gamma double
channels Channels
Результат void
      public void Level(double blackPoint, double whitePoint, double gamma, Channels channels)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_Level(Instance, blackPoint, whitePoint, gamma, (UIntPtr)channels);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_Level(Instance, blackPoint, whitePoint, gamma, (UIntPtr)channels);
        #endif
      }
      public void LevelColors(MagickColor blackColor, MagickColor whiteColor, Channels channels, bool invert)
MagickImage.NativeMagickImage