PdfKnownColorSpace
IndexedColorTable Property
|
Gets or sets the color table.
Namespace:
Spire.Pdf.ColorSpace
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
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
Type:
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