我正在尝试转换RGBA颜色,alpha<考虑到背景颜色,将1作为实体RGB表示。
使用this question提供的算法,我设法将正确的转换为纯色RGB - 但仅当alpha = 0.5时。
这是我的测试代码:
<!DOCTYPE html>
<html>
<head></head>
<body>
<script type="text/javascript">
// Basic RGB(A) to CSS property value
function _toString(obj) {
var type = 'rgb', out = obj.red + ', ' + obj.green + ', ' + obj.blue;
if (obj.alpha !== undefined) {
type += 'a';
out += ', ' + obj.alpha;
}
return type + '(' + out + ')';
}
// Background color, assume this is always RGB
var bg = {red: 255, green: 51, blue: 0};
// RGBA color
var RGBA = {red: 0, green: 102, blue: 204, alpha: 0};
// Output RGB
var RGB = {red: null, green: null, blue: null};
// Just a cache...
var alpha;
while (RGBA.alpha < 1) {
alpha = 1 - RGBA.alpha;
RGB.red = Math.round((alpha * (RGBA.red / 255) + ((1 - RGBA.alpha) * (bg.red / 255))) * 255);
RGB.green = Math.round((alpha * (RGBA.green / 255) + ((1 - RGBA.alpha) * (bg.green / 255))) * 255);
RGB.blue = Math.round((alpha * (RGBA.blue / 255) + ((1 - RGBA.alpha) * (bg.blue / 255))) * 255);
document.write('<div style="display: block; width: 150px; height: 100px; background-color: ' + _toString(bg) + '">\
<div style="color: #fff; width: 50px; height: 50px; background-color: ' + _toString(RGBA) + '"><small>RGBA<br>' + RGBA.alpha + '</small></div>\
<div style="color: #fff; width: 50px; height: 50px; background-color: ' + _toString(RGB) + '"><small>RGB<br>' + RGBA.alpha + '</small></div>\
</div>');
// Increment alpha
RGBA.alpha += 0.25;
}
</script>
</body>
</html>
在Chrome和Firefox中运行上述操作会在alpha为0.5时成功获得RGBA-> RGB,任何偏离0.5的偏差都会导致不匹配,如果偏差非常小则非常微妙(即可能会发现问题当alpha为0.55时。
我已经多次重写逻辑,将逻辑完全扩展到最基本的部分,但我没能成功。
答案 0 :(得分:8)
看起来你正在尝试使用常用方法进行混合,但增量循环让我失望。从OpenGL FAQ中拉出来:
“上面描述的典型用法[用于混合]通过其相关的alpha值修改传入的颜色,并将目标颜色修改一个减去传入的alpha值。然后将这两种颜色的总和写回帧缓冲区。”
因此,使用:
而不是while循环alpha = 1 - RGBA.alpha;
RGB.red = Math.round((RGBA.alpha * (RGBA.red / 255) + (alpha * (bg.red / 255))) * 255);
RGB.green = Math.round((RGBA.alpha * (RGBA.green / 255) + (alpha * (bg.green / 255))) * 255);
RGB.blue = Math.round((RGBA.alpha * (RGBA.blue / 255) + (alpha * (bg.blue / 255))) * 255);