I tried to implement a my color editor in Java. It should be a simple software. The user will input color in hexadecimal RGBs, for example: 0xFF00FF. I know how to calculate Hue, Chroma, Saturation and Lightness, but how to add or substract Hue value to this given color? This is the mystery.

Is there any algorithm or formula to use?

Now I use this method, but I think the result is different from what I got with Adobe Photoshop.

public void addHue(float addHue) {
    float c = getChroma();
    addHue %= 6;
    if (addHue < 2) {
        float n = 1 - green;
        green = green + addHue * n;
    } else if (addHue < 4) {
        addHue -= 2;
        float n = 1 - blue;
        blue = blue + addHue * n;
    } else if (addHue < 6) {
        addHue -=4;
        float n = 1 - red;
        red = red + addHue * n;
    }
    if (green > 1) green = 1;
    else if (green < 0) green = 0;
    if (red > 1) red = 1;
    else if (red < 0) red = 0;
    if (blue > 1) blue = 1;
    else if (blue < 0) blue = 0;
}
link|improve this question
Why do you want to add hue? What are you trying to achieve? Is that a user control? – MarvinLabs Mar 22 '11 at 9:20
feedback

2 Answers

The java.awt.Color class can help with this.

link|improve this answer
Hi David, unfortunately I cannot do that. I tried to implement this into a J2ME project. But thanks for your attention. – Amri Shodiq Mar 24 '11 at 4:15
feedback

I don't really understand what you try to achieve by adding two hues together.

Hue is an angle giving the "tint" of the color you are representing. If you think in degrees, the hue will be in the [0, 360[ range. Also, values of 45 and 405 will be representing the same hue.

You have to take this into account when you want to manipulate hues. That is, is you want to average two values, for instance 355 and 5, the correct result could be 0 (draw a circle and take the smallest half angle between those two values) or 180 (the largest half angle).


How I did it on Android (which does not have the Color manipulation utilities) is to create my own color class that stores both representations of a color (rgb and hsv).

Then I have methods that allow to set RGB or set HSV. Adding in the same color space is trivial. Then each time these methods are called, I respectively call an updateHSV or updateRGB method that computes the color components from the new values.

class Color {
  float[] hsv;
  float[] rgb;

  public void setRgb(float[] rgb) {
    System.arraycopy(rgb, 0, this.rgb, 0, 3);
    computeHsvFromRgb();
  }

  public void setHsv(float[] hsv) {
    System.arraycopy(hsv, 0, this.hsv, 0, 3);
    computeRgbFromHsv();
  }

  // ...
}

For color convertion sample code:

link|improve this answer
Thanks for your attention MarvinLabs. What I am really ask is, "how to add or substract Hue value to a given color". I have a color, for example #FFFF00 that is yellow. How do I add a hue, for example 45 to my color (#FFFF00). What value should I add/substract to the red part, green part and blue part? – Amri Shodiq Mar 24 '11 at 4:13
1  
Idea is to keep both representations of a Color updated at all times. So you can set RGB, then manipulate HSV and finally get back RGB. See edited answer. – MarvinLabs Mar 24 '11 at 9:37
Hi Marvin, thank for your reply. I think computeHsvFromRgb(); and computeRgbFromHsv(); is what I need. Why don't you share it? Is it a secret formula? – Amri Shodiq May 26 '11 at 8:38
Nothing secret, simply very easy to find with google (see edited answer) – MarvinLabs May 26 '11 at 10:25
Wow, thanks a lot. I have to try it. – Amri Shodiq May 30 '11 at 9:08
feedback

Your Answer

 
or
required, but never shown

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