Gets or sets the color table.

Namespace: Spire.Pdf.ColorSpace
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public byte[] IndexedColorTable { get; set; }
Public Property IndexedColorTable As Byte()
	Get
	Set
public:
property array<unsigned char>^ IndexedColorTable {
	array<unsigned char>^ get ();
	void set (array<unsigned char>^ value);
}
member IndexedColorTable : byte[] with get, set

Property Value

array<Byte>[]()[][]
The table of color components.

Remarks

The color table data must be m * (maxIndex + 1) bytes long, 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; that is, 0 corresponds to the minimum value in the range for that component, and 255 corresponds to the maximum.

See Also