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

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

public ClampChannel ( Channels channels ) : void
channels Channels
Результат void
      public void ClampChannel(Channels channels)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_ClampChannel(Instance, (UIntPtr)channels, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_ClampChannel(Instance, (UIntPtr)channels, out exception);
        #endif
        CheckException(exception);
      }
      public void Clip()
MagickImage.NativeMagickImage