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

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

public ContrastStretch ( double blackPoint, double whitePoint, Channels channels ) : void
blackPoint double
whitePoint double
channels Channels
Результат void
      public void ContrastStretch(double blackPoint, double whitePoint, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_ContrastStretch(Instance, blackPoint, whitePoint, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_ContrastStretch(Instance, blackPoint, whitePoint, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public void ColorMatrix(DoubleMatrix matrix)
MagickImage.NativeMagickImage