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

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

public LinearStretch ( double blackPoint, double whitePoint ) : void
blackPoint double
whitePoint double
Результат void
      public void LinearStretch(double blackPoint, double whitePoint)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_LinearStretch(Instance, blackPoint, whitePoint, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_LinearStretch(Instance, blackPoint, whitePoint, out exception);
        #endif
        CheckException(exception);
      }
      public void LiquidRescale(string geometry)
MagickImage.NativeMagickImage