XYZToRGB

From SCAR Divi Manual
Revision as of 20:40, 5 July 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> procedure XYZToRGB(X, Y, Z: Extended; var R, G, B: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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

See Also