HSL to RGB color conversion

后端 未结 21 2721
忘了有多久
忘了有多久 2020-11-22 01:59

I am looking for a JavaScript / PHP algorithm to convert between HSL color to RGB.

It seems to me that HSL is not very widely used so I am not having much luck search

21条回答
  •  时光说笑
    2020-11-22 02:17

    Found the easiest way, python to the rescue :D

    colorsys.hls_to_rgb(h, l, s)

    Convert the color from HLS coordinates to RGB coordinates.

提交回复
热议问题