如何使用PHP将颜色值转换为精确的精度

时间:2014-03-13 17:36:42

标签: php image-processing

我有rgba中的颜色值,格式为RGBA(20,40,60,1),我希望以精确的精度转换实数。我怎么能在PHP中这样做

Red 20 =  0.074510
Green 40 = 0.156863
Blue 60 = 0.231373
alpha 1 = 1.000000

1 个答案:

答案 0 :(得分:-1)

function color2number($color) {
    $return = (1/250*$color);
    return $return
}

对于alpha,你需要一个特殊的函数或为函数添加第二个参数:)