ImageMagick.MagickImage.NativeMagickImage.RaiseOrLower C# (CSharp) Method

RaiseOrLower() public method

public RaiseOrLower ( int size, bool raise ) : void
size int
raise bool
return void
      public void RaiseOrLower(int size, bool raise)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_RaiseOrLower(Instance, (UIntPtr)size, raise, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_RaiseOrLower(Instance, (UIntPtr)size, raise, out exception);
        #endif
        CheckException(exception);
      }
      public void RandomThreshold(double low, double high, Channels channels)
MagickImage.NativeMagickImage