PHP Tool for analyzing pixels of images (eg. RGB, HSL, ...)
Recommended installation is via Composer.
composer require philandi/imgspector
Analyzing images is simple. Just create an instance of an image with a file path.
use Philandi\ImgSpector\Image;
$img = new Image('/path/to/file.png');
// or
$img = Image::createFromPath('/path/to/file.png');