XYZToRGB
From SCAR Divi Manual
Definition
procedure XYZToRGB(X, Y, Z: Extended; var R, G, B: Integer);
Availability
SCAR Divi 3.00 > Current
Description
Converts XYZ values specified by X, Y and Z to RGB color values and returns them in R, G and B. The result can be converted back to XYZ values using RGBToXYZ.
Example
var r, g, b: Integer; begin XYZToRGB(75, 50, 20, r, g, b) WriteLn(IntToStr(r) + ';' + IntToStr(g) + ';' + IntToStr(b)); end.
Output:
310;129;108