最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Convert RGB to Hex color - Stack Overflow

programmeradmin1浏览0评论

Below is a function to convert rgb to hex color. But it is not totally correct. With (0, 255, 0) (#00ff00). it return ff00 and so it is not valid color. I need help to modify it to return correct hex value.

function rgbToHex(r, g, b) {
        var rgb = b | (g << 8) | (r << 16);
        return rgb.toString(16);
    }

Below is a function to convert rgb to hex color. But it is not totally correct. With (0, 255, 0) (#00ff00). it return ff00 and so it is not valid color. I need help to modify it to return correct hex value.

function rgbToHex(r, g, b) {
        var rgb = b | (g << 8) | (r << 16);
        return rgb.toString(16);
    }
Share Improve this question asked Jul 27, 2012 at 8:15 StoneHeartStoneHeart 16.6k32 gold badges70 silver badges85 bronze badges
Add a ment  | 

8 Answers 8

Reset to default 8

How about this:

//...
return (0x1000000 | rgb).toString(16).substring(1);

Try this:

return ("000000"+rgb.toString(16)).slice(-6);
//                                   ^----returns last 6 chars
return ((b | g << 8 | r << 16) / 16777216).toString(16).substring(2);

or

return ((b | g << 8 | r << 16) / 0x1000000).toString(16).substring(2);

Disclaimer: I'm the author of the pusher.color library mentioned below.

If you don't mind using a library, you may want to try a library like pusher.color or xcolor. I've noticed you've asked a few questions on Stackoverflow about color manipulation in Javascript, so this might save you some time overall to use a library to solve your problem. The pusher.color syntax for what you want would be:

var hexString = pusher.color('rgb', r, g, b).hex6();

Just another alternative

function rgbToHex(r, g, b) {
    function c(v) {
        var hex = v.toString(16);
        return hex.length === 1 ? "0" + hex : hex;
    }
    return "#" + c(r) + c(g) + c(b);
}

How about using a library like the xolor library:

var color = xolor([45, 100, 200])
color.rgb // "rgb(45,100,200)"
color.hex // "2D64C8"
color.hsl // {h: 219, s:63.3, l:48.0}
color.hsv // {h: 218.7, s:0.7750, v:0.7843}
color.name // "royalblue"

function rgb(r, g, b){

  let string = []
  string.push(r,g,b)
  string = string.map((e) => e < 16 && e >= 0 ? "0" + e.toString(16).toUpperCase() : e )
  string = string.map((e) => e >= 255 ? "FF" : e )
  string = string.map((e) => e < 0 ? "00" : e )
  string = string.map((e) => e > 0 && e < 255 ? e.toString(16).toUpperCase() : e )
  
return string.join("")
}

To protect the shape of it , i drew borders with maps. As you can see on the table toString(16) provides us single digit number. So, to prevent missing digit, i add zero in first .map function. Rest of it seems clear, if you get stuck please inform me .

How about this:

return $.sprintf("#%02x%02x%02x", r, g, b);

For this you need to use jQuery.

发布评论

评论列表(0)

  1. 暂无评论