HSV to RGB Color Conversion

后端 未结 9 1670
离开以前
离开以前 2020-12-14 01:16

Is there a way to convert HSV color arguments to RGB type color arguments using pygame modules in python? I tried the following code, but it returns ridiculous values.

9条回答
  •  -上瘾入骨i
    2020-12-14 01:30

    The Hue argument should also vary from 0-1.

    import colorsys
    test_color = colorsys.hsv_to_rgb(359/360.0, 1, 1)
    

提交回复
热议问题