Percentage to Hexcolor in PHP

前端 未结 3 1836
渐次进展
渐次进展 2021-01-23 04:11

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          


        
3条回答
  •  太阳男子
    2021-01-23 04:43

    Try converting the percentage to HSV (divide the percentage by 100 to get the hue and just set the saturation and value to an arbitrary constant like 1) and then using this question to convert that to RGB form: PHP HSV to RGB formula comprehension

提交回复
热议问题