Home > Backend Development > PHP Tutorial > PHP Gets the Color Value of an Image_PHP Tutorial

PHP Gets the Color Value of an Image_PHP Tutorial

WBOY
Release: 2016-07-13 10:32:34
Original
819 people have browsed it

PHP obtains the color value of the image and detects the main color code of the image:

view sourceprint?01

 02$i=imagecreatefromjpeg("photo3.jpg");//Test picture, define one yourself, pay attention to the path

 03for ($x=0;$x

 04 for ($y=0;$y

 05 $rgb = imagecolorat($i,$x,$y);

 06 $r=($rgb >>16) & 0xFF;

 07 $g=($rgb >> & 0xFF;

 08 $b=$rgb & 0xFF;

 09 $rTotal += $r;

 10 $gTotal += $g;

 11 $bTotal += $b;

 12 $total++;

 13}

 14}

 15$rAverage = round($rTotal/$total);

 16$gAverage = round($gTotal/$total);

 17$bAverage = round($bTotal/$total);

 18//Example:

 19echo $rAverage;

 20?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/755616.htmlTechArticlePHP gets the color value of the image and detects the main color code of the image: view sourceprint?01 02$i=imagecreatefromjpeg(photo3 .jpg);//Test picture, define one yourself, pay attention to the path 03for ($...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template