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

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

public GetColormap ( int index ) : MagickColor
index int
Результат MagickColor
      public MagickColor GetColormap(int index)
      {
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.MagickImage_GetColormap(Instance, (UIntPtr)index);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.MagickImage_GetColormap(Instance, (UIntPtr)index);
        #endif
        return MagickColor.CreateInstance(result);
      }
      public static IntPtr GetNext(IntPtr image)
MagickImage.NativeMagickImage