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

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

public GetBitDepth ( Channels channels ) : int
channels Channels
Результат int
      public int GetBitDepth(Channels channels)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return (int)NativeMethods.X64.MagickImage_GetBitDepth(Instance, (UIntPtr)channels);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return (int)NativeMethods.X86.MagickImage_GetBitDepth(Instance, (UIntPtr)channels);
        #endif
      }
      public MagickColor GetColormap(int index)
MagickImage.NativeMagickImage