IndexedColorSpace Class Documentation

classIndexedColorSpace : ColorSpace

Namespace:Datalogics::PDFL

Inherits from:
ColorSpace

Detailed Description

Indexed color spaces are used to reduce the amount of memory used for processing images.

Indexed color spaces are used when a limited number of colors are needed.

Commonly, an image with an indexed color space can be one third the size of the same image with a standard color space, because the indexed image uses a smaller palette of colors.

Referenced by

Constructor & Destructor Documentation

IndexedColorSpace

IndexedColorSpace(ColorSpacebase_, inthival, System.Collections.Generic.IList< System.Int32 >lookup)

Parameters

base_: ColorSpace
hival: int

an integer that specifies the maximum valid index value. In other words, the color table is to be indexed by integers in the range 0 to hival. hival can be no greater than 255.

lookup: System.Collections.Generic.IList< System.Int32 >

a list of integers in the range 0..255. There must be m * (hival + 1) values, where m is the number of components of the base color space.

Create a Indexed color space.

Property Documentation

Base

ColorSpaceBase[get]

DeviceCMYK

static ColorSpaceDeviceCMYK[get]

The DeviceCMYK color space, representing cyan, magenta, yellow, and black components.

DeviceGray

static ColorSpaceDeviceGray[get]

The DeviceGray color space, representing a single grayscale component.

DeviceRGB

static ColorSpaceDeviceRGB[get]

The DeviceRGB color space, representing red, green, and blue components.

DeviceRGBA

static ColorSpaceDeviceRGBA[get]

The DeviceRGBA color space, representing red, green, blue, and alpha components.

HiVal

intHiVal[get]

Lab

static ColorSpaceLab[get]

The CIE-based L*a*b* color space.

LabA

static ColorSpaceLabA[get]

The CIE-based L*a*b* color space with an alpha component.

Lookup

System.Collections.Generic.IList< System.Int32 >Lookup[get]

Name

stringName[get]

NumComponents

intNumComponents[get]

PDFObject

PDFObjectPDFObject[get]

Member Function Documentation

ConstructorRetrieve

static new static IndexedColorSpaceConstructorRetrieve(System.IntPtrignored)

Parameters

ignored: System.IntPtr

Returns:

new static IndexedColorSpace

Dispose

voidDispose()

Returns:

void

DisposeChildren

voidDisposeChildren()

Returns:

void

Equals

override boolEquals(objectobj)

Parameters

obj: object

Returns:

override bool

ToString

override stringToString()

Returns:

A string describing this ColorSpace.

Convert a ColorSpace to a string representation.

operator!=

static booloperator!=(ColorSpacea, ColorSpaceb)

Parameters

a: ColorSpace

The first ColorSpace to compare.

b: ColorSpace

The second ColorSpace to compare.

Returns:

true if the two ColorSpace objects are not equal; false otherwise.

Test two ColorSpace objects for inequality.

operator==

static booloperator==(ColorSpacea, ColorSpaceb)

Parameters

a: ColorSpace

The first ColorSpace to compare.

b: ColorSpace

The second ColorSpace to compare.

Returns:

true if the two ColorSpace objects are equal; false otherwise.

Test two ColorSpace objects for equality.