Converting hex to RGB and vice-versa - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:52:31Z http://stackoverflow.com/feeds/question/214359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa 1 Converting hex to RGB and vice-versa orlandu63 2008-10-18T01:33:52Z 2008-10-18T07:13:41Z <p>What is the most efficient way to do this?</p> http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa/214365#214365 2 Answer by jeremy Ruten for Converting hex to RGB and vice-versa jeremy Ruten 2008-10-18T01:38:12Z 2008-10-18T01:38:12Z <p>A hex value is just RGB numbers represented in hexadecimal. So you just have to take each pair of hex digits and convert them to decimal.</p> <p>Example:</p> <p>#FF6400 = RGB(0xFF, 0x64, 0x00) = RGB(255, 100, 0)</p> http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa/214367#214367 1 Answer by Bill James for Converting hex to RGB and vice-versa Bill James 2008-10-18T01:39:21Z 2008-10-18T07:13:41Z <p>just real quick:</p> <p>int r = ( hexcolor >> 16 ) &amp;&amp; 0xFF;</p> <p>int g = ( hexcolor >> 8 ) &amp;&amp; 0xFF;</p> <p>int b = hexcolor &amp;&amp; 0xFF;</p> <p>int hexcolor = (r &lt;&lt; 16) + (g &lt;&lt; 8) + b;</p> http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa/214386#214386 1 Answer by Vicent Marti for Converting hex to RGB and vice-versa Vicent Marti 2008-10-18T01:57:11Z 2008-10-18T01:57:11Z <p>Real answer: Depends on what kind of hexadecimal color value you are looking for (e.g. 565, 555, 888, 8888, etc), the amount of alpha bits, the actual color distribution (rgb vs bgr...) and a ton of other variables.</p> <p>Here's a generic algorithm for most RGB values using C++ templates (straight from ScummVM).</p> <pre><code>template&lt;class T&gt; uint32 RGBToColor(uint8 r, uint8 g, uint8 b) { return T::kAlphaMask | (((r &lt;&lt; T::kRedShift) &gt;&gt; (8 - T::kRedBits)) &amp; T::kRedMask) | (((g &lt;&lt; T::kGreenShift) &gt;&gt; (8 - T::kGreenBits)) &amp; T::kGreenMask) | (((b &lt;&lt; T::kBlueShift) &gt;&gt; (8 - T::kBlueBits)) &amp; T::kBlueMask); } </code></pre> <p>Here's a sample color struct for 565 (the standard format for 16 bit colors):</p> <pre><code>template&lt;&gt; struct ColorMasks&lt;565&gt; { enum { highBits = 0xF7DEF7DE, lowBits = 0x08210821, qhighBits = 0xE79CE79C, qlowBits = 0x18631863, kBytesPerPixel = 2, kAlphaBits = 0, kRedBits = 5, kGreenBits = 6, kBlueBits = 5, kAlphaShift = kRedBits+kGreenBits+kBlueBits, kRedShift = kGreenBits+kBlueBits, kGreenShift = kBlueBits, kBlueShift = 0, kAlphaMask = ((1 &lt;&lt; kAlphaBits) - 1) &lt;&lt; kAlphaShift, kRedMask = ((1 &lt;&lt; kRedBits) - 1) &lt;&lt; kRedShift, kGreenMask = ((1 &lt;&lt; kGreenBits) - 1) &lt;&lt; kGreenShift, kBlueMask = ((1 &lt;&lt; kBlueBits) - 1) &lt;&lt; kBlueShift, kRedBlueMask = kRedMask | kBlueMask }; }; </code></pre> http://stackoverflow.com/questions/214359/converting-hex-to-rgb-and-vice-versa/214657#214657 4 Answer by Jeremy Michael Cantrell for Converting hex to RGB and vice-versa Jeremy Michael Cantrell 2008-10-18T06:02:40Z 2008-10-18T06:02:40Z <p>In python:</p> <pre><code>def hex_to_rgb(value): value = value.lstrip('#') lv = len(value) return tuple(int(value[i:i+lv/3], 16) for i in range(0, lv, lv/3)) def rgb_to_hex(rgb): return '#%02x%02x%02x' % rgb hex_to_rgb("#ffffff") #==&gt; (255, 255, 255) hex_to_rgb("#ffffffffffff") #==&gt; (65535, 65535, 65535) rgb_to_hex((255, 255, 255)) #==&gt; '#ffffff' rgb_to_hex((65535, 65535, 65535)) #==&gt; '#ffffffffffff' </code></pre>