PHP函数将RYB颜色转换为RGB颜色

时间:2019-09-14 22:27:39

标签: php arrays colors

我在php中。

我有一个具有该值的RYB颜色:

$rybColor = array("r"=>0,"y"=255",b="255")

我想将其转换为RGB以获得

$rgbColor = array("r"=>0,"g"=>255,"b"=>0)

那有可能吗?

我在javascript中找到了一个脚本 link 但这对我来说有点复杂。我坚持对值进行标准化。.

1 个答案:

答案 0 :(得分:1)

绝对。

以下是您链接的PHP versionJavaScript version中的快速Python version

// RYB color to RGB color
function RYB2RGB($iRed, $iYellow, $iBlue){

    // Remove the whiteness from the color.
    $iWhite = min($iRed, $iYellow, $iBlue);

    $iRed    -= $iWhite;
    $iYellow -= $iWhite;
    $iBlue   -= $iWhite;

    $iMaxYellow = max($iRed, $iYellow, $iBlue);

    // Get the green out of the yellow and blue
    $iGreen = min($iYellow, $iBlue);

    $iYellow -= $iGreen;
    $iBlue   -= $iGreen;

    if ($iBlue > 0 && $iGreen > 0)
    {
        $iBlue  *= 2.0;
        $iGreen *= 2.0;
    }

    // Redistribute the remaining yellow.
    $iRed   += $iYellow;
    $iGreen += $iYellow;

    // Normalize to values.
    $iMaxGreen = max($iRed, $iGreen, $iBlue);

    if ($iMaxGreen > 0)
    {
        $iN = $iMaxYellow / $iMaxGreen;

        $iRed   *= $iN;
        $iGreen *= $iN;
        $iBlue  *= $iN;
    }

    // Add the white back $in.
    $iRed   += $iWhite;
    $iGreen += $iWhite;
    $iBlue  += $iWhite;

    // Save the RGB
    $RGB = [floor($iRed), floor($iGreen), floor($iBlue)];

    return $RGB
}

$R = 98;
$y = 152;
$b = 223;

var_dump( RYB2RGB( $R,  $y, $b ) ); //

// array(3) {
//  [0]=>
//  float(98)
//  [1]=>
//  float(193)
//  [2]=>
//  float(223)
//   }