admin管理员组文章数量:1344628
Let's say I have the color rgba(255, 0, 0, 0.5) on a white background. The color that can bee seen is almost identical to rgba(255, 140, 140, 1) which is a solid color. I'm looking for an algorithm that converts a semi-transparent color (over white) to a solid color so that it looks (pretty much) the same when it's one near each other (like in the photo below)
I noticed that if there are 2 ponents (r, g, or b) that are 0, then you have to keep the not-null ponent's value and adjust the null ponents by the same value so that it matches the wight color. This value (I guess) depends on the alpha ponent of semi-transparent color. But I can't seem to find the formula. How about the rest of the case? I think there must be a general formula that can be applied.
I'm looking for an answer in pseudocode, javascript, Java, Python, C# or C++.
Also, I am not working on any project. This question is for learning purposes and for helping people that might need this.
Let's say I have the color rgba(255, 0, 0, 0.5) on a white background. The color that can bee seen is almost identical to rgba(255, 140, 140, 1) which is a solid color. I'm looking for an algorithm that converts a semi-transparent color (over white) to a solid color so that it looks (pretty much) the same when it's one near each other (like in the photo below)
I noticed that if there are 2 ponents (r, g, or b) that are 0, then you have to keep the not-null ponent's value and adjust the null ponents by the same value so that it matches the wight color. This value (I guess) depends on the alpha ponent of semi-transparent color. But I can't seem to find the formula. How about the rest of the case? I think there must be a general formula that can be applied.
I'm looking for an answer in pseudocode, javascript, Java, Python, C# or C++.
Also, I am not working on any project. This question is for learning purposes and for helping people that might need this.
Share Improve this question edited Jan 21, 2018 at 7:03 Stefan Octavian asked Jan 20, 2018 at 18:17 Stefan OctavianStefan Octavian 6208 silver badges19 bronze badges1 Answer
Reset to default 15I know this formula to convert from rgba to rgb
function rgba2rgb(background, color) {
const alpha = color[3]
return [Math.floor((1 - alpha) * background[0] + alpha * color[0] + 0.5),
Math.floor((1 - alpha) * background[1] + alpha * color[1] + 0.5),
Math.floor((1 - alpha) * background[2] + alpha * color[2] + 0.5)]
}
console.log(rgba2rgb([255, 255, 255], [255, 0, 0, 0.5])) // [ 255, 128, 128 ]
But it's not right for your example
本文标签: javascriptAlgorithm to convert semitransparent to solid colorStack Overflow
版权声明:本文标题:javascript - Algorithm to convert semi-transparent to solid color - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743741115a2530910.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论