0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptでRGBをHEXに変換するコード

Posted at

やりたいこと

JavaScriptでRGBrgb(rr, gg, bb)からHEX#rrggbbに変換したい。

コード

//HEX変換
function toHexColor(c){
  c=c.replace(/[rgb(|)]/g,"");
  c=c.split(", ");
  hex="#" + toHex(c[0]) + toHex(c[1]) + toHex(c[2]);
  return hex;
}
//16進変換
function toHex(n) {
  var x = Number(n).toString(16);
  return n.length == 1 ? "0" + x : x;
}

かなり汚いが気にしないでいただきたい。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?