Detect main colors in an image with PHP

前端 未结 7 2183
走了就别回头了
走了就别回头了 2020-11-27 12:05

I am trying to replicate the functionality that Dribbble.com does with detecting the predominant colors in an Image. In the image below you can see a screenshot from Dribbb

7条回答
  •  广开言路
    2020-11-27 12:16

    Here's exactly what you're looking for in PHP: https://github.com/thephpleague/color-extractor

    Example :

    use League\ColorExtractor\Palette;
    
    $palette = Palette::fromFilename('some/image.png');
    
    $topEightColors = $palette->getMostUsedColors(8);
    

提交回复
热议问题