Created
April 4, 2020 15:30
-
-
Save imhuytq/6cdbebac6d01144031e38d79bea6e785 to your computer and use it in GitHub Desktop.
RGBA2RGB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function rgba2rgb(RGB_background, RGBA_color) | |
{ | |
var alpha = RGBA_color.a; | |
return new Color( | |
(1 - alpha) * RGB_background.r + alpha * RGBA_color.r, | |
(1 - alpha) * RGB_background.g + alpha * RGBA_color.g, | |
(1 - alpha) * RGB_background.b + alpha * RGBA_color.b | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment