Tagged Questions

6
votes
5answers
2k views

PHP HSV to RGB formula comprehension

I can convert RGB values to HSV with the following code... $r = $r/255; $g = $g/255; $b = $b/255; $h = 0; $s = 0; $v = 0; $min = min(min($r, $g),$b); $max = max(max($r, $g),$b); $r = ...
3
votes
2answers
107 views

Algorithm to sort hues into shortest span, e.g. `350,354,2,10,15`? [0-360 deg]

In color schemes, I would like to sort the hues, but would like to avoid 'big gaps', i.e. prefer 350,354,2,10,15 over 2,10,15,350,354 (when expressed as 0-360 degree values). What's the best approach ...
2
votes
3answers
111 views

Percentage to Hexcolor in PHP

I'd like to make a percentage into a hexidecimal color. Kind of how HSV color degrees work... I am using PHP. IE: 0% : RED (#FF0000) 8% : ORANGE (#FF7F00) 17% : YELLOW (#FFFF00) ...
2
votes
1answer
2k views

RGB to HSV in PHP

In PHP, what is the most straightforward way to convert a RGB triplet to HSV values?
0
votes
3answers
605 views

PHP Work out colour saturation

lets say i have the following RGB values: R:129 G:98 B:87 Photoshop says the saturation of that colour is 33% How would i work out that percentage using PHP and the RGB values?