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

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

public WhiteThreshold ( string threshold, Channels channels ) : void
threshold string
channels Channels
Результат void
      public void WhiteThreshold(string threshold, Channels channels)
      {
        using (INativeInstance thresholdNative = UTF8Marshaler.CreateInstance(threshold))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_WhiteThreshold(Instance, thresholdNative.Instance, (UIntPtr)channels, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_WhiteThreshold(Instance, thresholdNative.Instance, (UIntPtr)channels, out exception);
          #endif
          CheckException(exception);
        }
      }
      public IntPtr WriteBlob(MagickSettings settings, out UIntPtr length)
MagickImage.NativeMagickImage