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