RGB to hex and hex to RGB

前端 未结 30 2841
遥遥无期
遥遥无期 2020-11-21 06:56

How to convert colors in RGB format to hex format and vice versa?

For example, convert \'#0080C0\' to (0, 128, 192).

30条回答
  •  遥遥无期
    2020-11-21 07:15

    If you need compare two color values (given as RGB, name color or hex value) or convert to HEX use HTML5 canvas object.

    var canvas = document.createElement("canvas");
    var ctx = this.canvas.getContext('2d');
    
    ctx.fillStyle = "rgb(pass,some,value)";
    var temp =  ctx.fillStyle;
    ctx.fillStyle = "someColor";
    
    alert(ctx.fillStyle == temp);
    

提交回复
热议问题