README.md

December 5, 2022 ยท View on GitHub

ColorToHex

Description

Converts a TColor to a HTML Hex value

More Info

Inp: Tcolor

Nothing special...

A string containing the html color

Submitted On
ByBart Meijer
LevelBeginner
User Rating3.9 (27 globes from 7 users)
CompatibilityDelphi 5, Delphi 4, Pre Delphi 4
CategoryInternet/ HTML
WorldDelphi
Archive File

API Declarations

Who cares?

Source Code

function ColorToHex(Inp: TColor): String;
var
  tmp: Longint;
begin
  tmp:= ColorToRGB(inp);
  Result:= '#' + IntToHex(GetRValue(tmp),2) + IntToHex(GetGValue(tmp),2) + IntToHex(GetBValue(tmp),2);
end;