views:

116

answers:

2

Hi,

I'm trying to figure out how I can convert a number between 1 and 50 to a greyscale color that could be used here:

g.setColor(MyGreyScaleColour);

1 would be lightest (white) and 50 would be darkest (black).

e.g.

Color intToCol(int colNum)  
{  
code here  
}  

Any suggestions?

+7  A: 

Something like:

float grey = (50 - colNum) / 49f;
return new Color(grey, grey, grey);
Jon Skeet
Why divide by 49f instead of 50f?
Mark E
+6  A: 

Java uses RGB colors where each component (Red, Green, Blue) ranges from 0-255. When all components have the same value, you end up with a white-black-gray color. Combinations closer to 255 would be more white and closer to 0 would be all black. The function below would return a grayish color, with the amount of white scaled accordingly with the input.

Color intToCol(int colNum)
{
  int rgbNum = 255 - (int) ((colNum/50.0)*255.0);
  return new Color (rgbNum,rgbNum,rgbNum);
}
tschaible
+1 for providing good explanation, not just code.
Jonik