How do you convert a TColor value to a decimal representation (clRed = $0000FF)?
|
|
|||||
|
|
|
Colour constants in Delphi (and the Windows API) are simply signed integers. They are normally represented in Hexadecimal format (with a leading $). It is defined in Graphics.pas as TColor = -$7FFFFFFF-1..$7FFFFFFF; Positive values ($00000000 -> $00FFFFFF) are in BGR format: $00FF0000 = blue, $0000FF00 = green, $000000FF = red. Negative values refer to user defineable system colours, like the colour for window text (clWindowText). To convert a TColor to it's display value, use
or use
In older versions of Delphi, IntToHex calls Format(), in later versions it is directly implemented and is much faster. To convert to HTML #RRBBGG format, you need to reverse the red and green values in RRUZ answer:
|
||||||
|
|
|
Try this:
|
||||||
|
|
|
Try
|
|||
|
|
|
|
I've always been a fan of "Format" for such uses:
|
||
|
|
|
|
after several hours I came up with this.
I think it works but still testing... |
||||||
|
