Detecting colors for an Image using PHP

后端 未结 2 564
-上瘾入骨i
-上瘾入骨i 2020-12-12 22:01

How can I detect the top 2 colors of an Image in PHP?

for example I have this image:

\"enter

相关标签:
2条回答
  • 2020-12-12 22:23

    If you are OK to call an external utility, Imagemagick can generate a histogram for you. It's probably going to be much faster than a PHP implementation.

    Basically, this command gives you a list of colours, sorted by most dominant first:

    convert 'http://i.stack.imgur.com/J2txV.png' -format %c histogram:info:-|sort -r
    

    You might want to map the image to a fixed palette first ("Round off" the colours). This is what I use:

    convert 'http://i.stack.imgur.com/J2txV.png' -modulate 100,200,100 -remap 'http://i.stack.imgur.com/GvTqB.png' -format %c histogram:info:-|sort -r
    
    0 讨论(0)
  • 2020-12-12 22:28

    Here's a script that will give you the list:

    function detectColors($image, $num, $level = 5) {
      $level = (int)$level;
      $palette = array();
      $size = getimagesize($image);
      if(!$size) {
        return FALSE;
      }
      switch($size['mime']) {
        case 'image/jpeg':
          $img = imagecreatefromjpeg($image);
          break;
        case 'image/png':
          $img = imagecreatefrompng($image);
          break;
        case 'image/gif':
          $img = imagecreatefromgif($image);
          break;
        default:
          return FALSE;
      }
      if(!$img) {
        return FALSE;
      }
      for($i = 0; $i < $size[0]; $i += $level) {
        for($j = 0; $j < $size[1]; $j += $level) {
          $thisColor = imagecolorat($img, $i, $j);
          $rgb = imagecolorsforindex($img, $thisColor); 
          $color = sprintf('%02X%02X%02X', (round(round(($rgb['red'] / 0x33)) * 0x33)), round(round(($rgb['green'] / 0x33)) * 0x33), round(round(($rgb['blue'] / 0x33)) * 0x33));
          $palette[$color] = isset($palette[$color]) ? ++$palette[$color] : 1;  
        }
      }
      arsort($palette);
      return array_slice(array_keys($palette), 0, $num);
    }
    
    $img = 'icon.png';
    $palette = detectColors($img, 6, 1);
    echo '<img src="' . $img . '" />';
    echo '<table>'; 
    foreach($palette as $color) { 
      echo '<tr><td style="background:#' . $color . '; width:36px;"></td><td>#' . $color . '</td></tr>';   
    } 
    echo '</table>';
    
    0 讨论(0)
提交回复
热议问题