vote up 16 vote down star
8

Hello,

I have to mix some colors in a natural way. This means

blue + yellow = green 
blue + red = purple

and so on. I got the colors as RGB-Values. When I try to mix them I got the right "RGB"-results like

green + red = yellow
yellow + blue = white

but not the right "natural-wet-paint"-results. Any good idea how to mix RGB in a natural way?

It would be great if someone knew a solution within the Microsoft.Xna.Framework.Graphics namespace but a generic solution would also help :)

thanks

flag
Please post a code sample that shows what you're trying to do. – Jay Bazuzi Dec 29 '08 at 18:18

5 Answers

vote up 13 vote down check

"Natural wet paint" is a little ambiguous; the mixing of CMYK as suggested won't work because you're still adding colors.

If you want results like in Photoshop (as Jon B checked) you need to use L*a*b* space. Formulas for converting RGB to/from Lab and a description is here.

Lab space was specifically designed so that linear changes correspond to what the human eye perceives as a certain amount of color change. This is important because e.g. we are more sensitive to green than other colors, because we perceive changes differently depending both on hue and lightness, etc..

Trying any other methods currently being suggested will not only result in colors you don't want, but also won't represent a "constant-looking" change in color, especially if you use this for something where constant-change matters like a gradient.

link|flag
Fascinating. Great answer! – amdfan Dec 29 '08 at 18:35
What amdfan said! +1 – Daniel Schaffer Dec 29 '08 at 18:45
Thats great - thank you very much. – crono Dec 29 '08 at 18:48
vote up 6 vote down

There is a good article for converting RGB to L*a*b in C# at http://www.codeproject.com/KB/recipes/colorspace1.aspx.

link|flag
vote up 2 vote down

You get cmyk<->rgb conversion for free with WIC, but it's .NET 3.0 only

link|flag
vote up 1 vote down

@Jay Bazuzi:

Please post a code sample that shows what you're trying to do.

Sure - this is my function for mixing the two RGB-Colors.

public Color colorMixer(Color c1, Color c2)
{

    int _r = Math.Min((c1.R + c2.R),255);
    int _g = Math.Min((c1.G + c2.G),255);
    int _b = Math.Min((c1.B + c2.B),255);

    return new Color(Convert.ToByte(_r),
                     Convert.ToByte(_g),
                     Convert.ToByte(_b));
}

What I have read so far in this thread is very promising - I will convert C1 and C2 to L*a*b* , mix them - convert it back to RGB and return that color.

link|flag
1  
Even in the lab color space, you will likely need to average the color values, rather than simply adding them together to get the effect you want. e.g. int _r = Math.Min((c1.R + c2.R)/2,255); – neilwhitaker1 Dec 29 '08 at 19:00
vote up -2 vote down

Well, this may be a less scientific method, but it is the method I use. I just use Paint.NET's marvelous color wheel to dial in the color I like. I copy the Hex or RGB values over into Visual Studio. That's all. I always get what I want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.