View Single Post
  #41  
Old 06-18-2012, 07:59 AM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by DrakilorP2P View Post
rgbtohex() returns the wrong hex for me too.
Well, however it is written, it should probably just use format() instead:
PHP Code:
function RGBtoHex(redgreenblue)
  return 
format("#%.2x%.2x%.2x"red 255green 255blue 255); 
__________________
Reply With Quote