vote up -1 vote down star

I am assigning each color a numeric value. For example:

Color.red: 12 
Color.Blue: 6

I need to find a color between two colors (for example, red and blue). But how? I have tried this,

(Color.red+color.blue)/2=> (12 + 6)/2 = 9

9 corresponds to Color.yellow

flag

30% accept rate
1  
What's a color gap, and what do pixels have to do with colors? – OrbMan Jun 11 at 12:14
1  
Are you asking for an algorithm to build a linear gradient given a list of colors and the points within the gradient it should be each specific color? – Jonathan Jun 11 at 12:19
i change and add new version of question – ykaratoprak Jun 11 at 12:31
1  
possibly related: stackoverflow.com/questions/576861/… – yx Jun 11 at 12:33
@yx - It doesn't appear to be related as the other question is making use of the LinearGradientBrush to do the calculations for you where as this question appears to be asking how to do the calculations yourself. Plus, they don't appear to be drawing a line. – Rob Jun 11 at 12:53

2 Answers

vote up 3 vote down

You'll need to use the RGB values of the colour and interpolate between those. Using a single value isn't going to give you the discrimination you need.

The answer that yx quotes http://stackoverflow.com/questions/576861/c-drawing-a-line-with-a-gradient-colour looks like a good place to start

link|flag
vote up 1 vote down

Colors are normally represented as a six digit hex value for computers with Red, Green & Blue taking two digits each in that order e.g. FF0000 is red, 00FF00 is blue and 0000FF is Green. You should consider how to move between those kinds of values.

Michael Leigeber has a nice color transition algorithm in JavaScript which you can download to see how he has implemented moving between two values.

link|flag

Your Answer

Get an OpenID
or

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