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

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

public RandomThreshold ( double low, double high, Channels channels ) : void
low double
high double
channels Channels
Результат void
      public void RandomThreshold(double low, double high, Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_RandomThreshold(Instance, low, high, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_RandomThreshold(Instance, low, high, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public void ReadBlob(MagickSettings settings, byte[] data, int length)
MagickImage.NativeMagickImage