TIEICC.DescriptionUnicode
TIEICC.DescriptionUnicode
Declaration
property DescriptionUnicode: WideString;
Description
Returns the Unicode profile description found inside the ICC profile.
Notes:
- The TIFF Description tag may contain both a Unicode and
ANSI description- Only "enUS" Unicode descriptions are supported at present
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] := 'Description (Unicode)';
StringGrid1.Cells[1, 3] := ImageEnIO1.Params.InputICCProfile.DescriptionUnicode;
StringGrid1.Cells[0, 4] := 'InputColorSpace';
StringGrid1.Cells[1, 4] := String( ImageEnIO1.Params.InputICCProfile.InputColorSpace );
StringGrid1.Cells[0, 5] := 'OutputColorSpace';
StringGrid1.Cells[1, 5] := String( ImageEnIO1.Params.InputICCProfile.OutputColorSpace );