Contents

init(indexedBaseSpace:last:colorTable:)

Creates an indexed color space, consisting of colors specified by a color lookup table.

Declaration

init?(indexedBaseSpace baseSpace: CGColorSpace, last lastIndex: Int, colorTable: UnsafePointer<UInt8>)

Parameters

  • baseSpace:

    The color space on which the color table is based.

  • lastIndex:

    The maximum valid index value for the color table. The value must be less than or equal to 255.

  • colorTable:

    An array of m*(lastIndex+1) bytes, where m is the number of color components in the base color space. Each byte is an unsigned integer in the range 0 to 255 that is scaled to the range of the corresponding color component in the base color space.

Return Value

A new indexed color space object, or NULL if unsuccessful. In Objective-C, you’re responsible for releasing this object by calling CGColorSpaceRelease.

Discussion

An indexed color space contains a color table with up to 255 entries, and a base color space to which the color table entries are mapped. Each entry in the color table specifies one color in the base color space. A value in an indexed color space is treated as an index into the color table of the color space. The data in the table is in meshed format. (For example, for an RGB color space the values are R, G, B, R, G, B, and so on.)

See Also

Creating Color Spaces