This example describes the PHP method of obtaining the image color value. PHP obtains the image color value and detects the main color of the image by reading it through the imagecreatefromjpeg function. It takes the picture and recycles it to obtain each color value for calculation.
The specific code is as follows:
$i=imagecreatefromjpeg("photo3.jpg");//Test picture, define one yourself, pay attention to the path
for ($x=0;$x
for ($y=0;$y
$rgb = imagecolorat($i,$x,$y);
$r=($rgb >>16) & 0xFF;
$g=($rgb >> & 0xFF;
$b=$rgb & 0xFF;
$rTotal += $r;
$gTotal += $g;
$bTotal += $b;
$total++;
}
}
$rAverage = round($rTotal/$total);
$gAverage = round($gTotal/$total);
$bAverage = round($bTotal/$total);
//Example:
echo $rAverage;
?>