This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Decimal To Hex
#2
You can do it this way:
Code:
function rgbToHex(r,g,b)
  return string.format('%02x%02x%02x', r, g, b)
end

Your original function should work if color values are in the 0..255 range. But the output value width will vary unless the format is changed to %06x.
Reply


Messages In This Thread
Decimal To Hex - by mkaymak - 05.04.2023, 12:23
RE: Decimal To Hex - by admin - 05.04.2023, 12:38

Forum Jump: