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

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

public SetBitDepth ( Channels channels, int value ) : void
channels Channels
value int
Результат void
      public void SetBitDepth(Channels channels, int value)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MagickImage_SetBitDepth(Instance, (UIntPtr)channels, (UIntPtr)value);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MagickImage_SetBitDepth(Instance, (UIntPtr)channels, (UIntPtr)value);
        #endif
      }
      public void SetColormap(int index, MagickColor color)
MagickImage.NativeMagickImage