user3287393
user3287393

Reputation: 5

Color Combination

I have a grey image containing at least 20 different shades of gray. I would like to apply a certain color without changing it with the exception of the grey affecting the colors brightness slightly. I don't want a very drastic modification to color, only a hint. How would I go about doing this?

I'm using java, however I am more interested in the concept behind doing this.

Upvotes: 0

Views: 663

Answers (1)

camickr
camickr

Reputation: 324157

How would I get the hsv values of a color in Java?

Don't know about HSV, but you could probably use HSL instead. Check out HSL Color for a class that does the conversion.

Upvotes: 0

Related Questions