Mega Code Archive

 
Categories / Delphi / Graphic
 

To converts color to HEX color for HTML

Title: to converts color to HEX color for HTML Question: How to converts color to HEX color for HTML Answer: function ColorToHex(Color: integer): string; var r,g,b: byte; begin r:=GetRValue(Color); g:=GetGValue(Color); b:=GetBValue(Color); Result:=IntToHex(r,2)+IntToHex(g,2)+IntToHex(b,2); end;