ImageEn, unit iexBitmaps

TIEICC.OutputColorSpace

TIEICC.OutputColorSpace


Declaration

property OutputColorSpace: AnsiString;


Description

Returns the profile connection space field (output color space).

Allowed signatures:
Color space Signature
XYZData 'XYZ '
labData 'Lab '


Example

// Show ICC properties in a StringGrid
StringGrid1.Cells[0, 0] := 'Property';
StringGrid1.Cells[1, 0] := 'Value';
StringGrid1.Cells[0, 1] := 'Copyright';
StringGrid1.Cells[1, 1] := String( ImageEnIO1.Params.InputICCProfile.Copyright );
StringGrid1.Cells[0, 2] := 'Description';
StringGrid1.Cells[1, 2] := String( ImageEnIO1.Params.InputICCProfile.Description );
StringGrid1.Cells[0, 3] := 'InputColorSpace';
StringGrid1.Cells[1, 3] := String( ImageEnIO1.Params.InputICCProfile.InputColorSpace );
StringGrid1.Cells[0, 4] := 'OutputColorSpace';
StringGrid1.Cells[1, 4] := String( ImageEnIO1.Params.InputICCProfile.OutputColorSpace );