I'm looking for an algorithm to do additive color mixing for RGB values.
Is it as simple as adding the RGB values together to a max of 256?
(r1, g1, b1) + (r2, g2, b2) =
(min(r1+r2, 256), min(g1+g2, 256), min(b1+b2, 256))
|
|
It depends on what you want, and it can help to see what the results are of different methods. If you want Red + Black = Red Red + Green = Yellow Red + Green + Blue = White Red + White = White Black + White = White then adding with a max works (e.g. If you want Red + Black = Dark Red Red + Green = Dark Yellow Red + Green + Blue = Dark Gray Red + White = Pink Black + White = Gray then you'll need to average the values (e.g. |
||||
|
|
|
To blend using alpha channels, you can use these formulas:
NOTE: All variables used here are in the range [0.0, 1.0]. You have to divide or multiply by 255 if you want to use values in the range [0, 255]. For example, 50% red on top of 50% green:
Resulting color is: You could also reverse these formulas:
or
The formulas will calculate that background or paint color would have to be used to produce the give resulting color. Always do a range-check on the resulting values for these. If there is no valid solution, the values could go negative, or above one. |
||||
|
|
|
Few points:
This will give: (r1, g1, b1) + (r2, g2, b2) = (min(r1+r2, 255), min(g1+g2, 255), min(b1+b2, 255)) However, The "natural" way of mixing colors is to use the average, and then you don't need the min: (r1, g1, b1) + (r2, g2, b2) = ((r1+r2)/2, (g1+g2)/2, (b1+b2)/2) |
|||||||
|
Javascript function to blend rgba colorsc1,c2 and result - JSON's like c1={r:0.5,g:1,b:0,a:0.33}
|
|||
|
|
|
Yes, it is as simple as that. Another option is to find the average (for creating gradients). It really just depends on the effect you want to achieve. However, when Alpha gets added, it gets complicated. There are a number of different methods to blend using an alpha. An example of simple alpha blending: http://en.wikipedia.org/wiki/Alpha_compositing#Alpha_blending |
|||
|
|
|
More "natural" would be:
Or more generally, x of color1 and 1-x of color2 (eg. ¾ of first color, ¼ of second):
|
|||||||||
|