Difference between revisions of "HSLToRGB"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure HSLToRGB(H, S, L: Extended; var R, G, B: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description...") |
(No difference)
|
Revision as of 18:17, 5 July 2011
Definition
procedure HSLToRGB(H, S, L: Extended; var R, G, B: Integer);
Availability
SCAR Divi 3.00 > Current
Description
Converts HSL values specified by H, S and L to a RGB color values and returns them in R, G and B. The result can be converted back to RGB values using RGBToHSL.
Example
var r, g, b: Integer; begin HSLToRGB(25, 50, 75, r, g, b) WriteLn(IntToStr(r) + ';' + IntToStr(g) + ';' + IntToStr(b)); end.
Output:
191;223;159