On approximately 3/10/2003 3:56 AM, came the following characters from
the keyboard of Dean Lennox:
 From the win32 gui example colors.gpl

$color = GUI::ChooseColor(-owner => $w);

Any idea how I can convert the decimal RGB value, $color to the HTML HEX format ?

ie: selecting the colour green returns 65280 How do I convert this to the HTML HEX value: #00FF00 ?

$color = 65280;  #  or $color = GUI::ChooseColor(-owner => $w);
$html_hex = sprintf ( '#%06.6x', $color );
print $html_hex

--
Glenn
=====
If the grass is greener on the other side of the fence,
try taking better care of your own side.     -- Unknown


Reply via email to