我尝试将rgba
转换为十六进制颜色代码,但无法转换我能够转换的不透明度值剩余颜色,
以下是我的代码
var colorcode = "rgba(0, 0, 0, 0.74)";
var finalCode = rgba2hex(colorcode)
function rgba2hex(orig) {
var a, isPercent,
rgb = orig.replace(/\s/g, '').match(/^rgba?\((\d+),(\d+),(\d+),?([^,\s)]+)?/i),
alpha = (rgb && rgb[4] || "").trim(),
hex = rgb ?
(rgb[1] | 1 << 8).toString(16).slice(1) +
(rgb[2] | 1 << 8).toString(16).slice(1) +
(rgb[3] | 1 << 8).toString(16).slice(1) : orig;
if (alpha !== "") { a = alpha; }
else { a = 01; }
hex = hex + a;
return hex;
}
console.log(finalCode)
&#13;
这里我需要alpha值也转换为十六进制代码。
请建议如何转换
输出
期望值:000000bd
答案 0 :(得分:7)
由于rgba()表示法中的alpha通道表示为0~1值,因此在尝试将其转换为HEX格式之前,需要将其乘以255:
var colorcode = "rgba(0, 0, 0, 0.74)";
var finalCode = rgba2hex(colorcode)
function rgba2hex(orig) {
var a, isPercent,
rgb = orig.replace(/\s/g, '').match(/^rgba?\((\d+),(\d+),(\d+),?([^,\s)]+)?/i),
alpha = (rgb && rgb[4] || "").trim(),
hex = rgb ?
(rgb[1] | 1 << 8).toString(16).slice(1) +
(rgb[2] | 1 << 8).toString(16).slice(1) +
(rgb[3] | 1 << 8).toString(16).slice(1) : orig;
if (alpha !== "") {
a = alpha;
} else {
a = 01;
}
// multiply before convert to HEX
a = ((a * 255) | 1 << 8).toString(16).slice(1)
hex = hex + a;
return hex;
}
function test(colorcode) {
console.log(colorcode, rgba2hex(colorcode));
}
test("rgba(0, 0, 0, 0.74)");
test("rgba(0, 0, 0, 1)");
test("rgba(0, 0, 0, 0)");
test("rgba(0, 255, 0, 0.5)");
&#13;
但请注意,这只是rgba符号之一,并且它会以百分比为基础的符号失败。
另请注意,所有浏览器都不支持RGBA HEX表示法,因此您可能更愿意使用其他方法来转换您的值,具体取决于您要对其执行的操作。
答案 1 :(得分:1)
伟大的@kaiido,我试过这种方式
function rgba2hex(orig) {
var a, isPercent,
rgb = orig.replace(/\s/g, '').match(/^rgba?\((\d+),(\d+),(\d+),?([^,\s)]+)?/i),
alpha = (rgb && rgb[4] || "").trim(),
hex = rgb ?
(rgb[1] | 1 << 8).toString(16).slice(1) +
(rgb[2] | 1 << 8).toString(16).slice(1) +
(rgb[3] | 1 << 8).toString(16).slice(1) : orig;
if (alpha !== "") {
a = alpha;
} else {
a = 01;
}
a = Math.round(a * 100) / 100;
var alpha = Math.round(a * 255);
var hexAlpha = (alpha + 0x10000).toString(16).substr(-2).toUpperCase();
hex = hex + hexAlpha;
return hex;
}
答案 2 :(得分:0)
如果将rgba颜色作为字符串,则可以执行以下操作。
const color = 'rgba(249,6,6,1,0)';
const rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(',');
const hex = `#${((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1)}`;
console.log(hex); // #f90606
答案 3 :(得分:0)
只需创建一个函数即可更有效!代码同上。
var color;
function HexCode(color){
const rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(',');
const hex = `#${((1 << 24) + (parseInt(rgba[0]) << 16) + (parseInt(rgba[1]) << 8) + parseInt(rgba[2])).toString(16).slice(1)}`;
return hex;
}
console.log(HexCode('rgba(0,255,255,0.1)'))
答案 4 :(得分:0)
我的解决方案。希望有用。
const rgbaToHex = (color: string): string => {
if (/^rgb/.test(color)) {
const rgba = color.replace(/^rgba?\(|\s+|\)$/g, '').split(',');
// rgb to hex
// eslint-disable-next-line no-bitwise
let hex = `#${((1 << 24) + (parseInt(rgba[0], 10) << 16) + (parseInt(rgba[1], 10) << 8) + parseInt(rgba[2], 10))
.toString(16)
.slice(1)}`;
// added alpha param if exists
if (rgba[4]) {
const alpha = Math.round(0o1 * 255);
const hexAlpha = (alpha + 0x10000).toString(16).substr(-2).toUpperCase();
hex += hexAlpha;
}
return hex;
}
return color;
};
答案 5 :(得分:0)
这是一个简化的选项。
function rgbToHex(rgb) {
return '#' + rgb.match(/[0-9|.]+/g).map((x,i) => i === 3 ? parseInt(255 * parseFloat(x)).toString(16) : parseInt(x).toString(16)).join('')
}
适用于 rgb 和 rgba。