philandi / imgspector
A PHP image analyzation tool
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/philandi/imgspector
Requires
- php: >=5.6.0
- phpunit/phpunit: ~5.7
This package is not auto-updated.
Last update: 2025-10-12 06:58:14 UTC
README
PHP Tool for analyzing pixels of images (eg. RGB, HSL, ...)
Installation
Recommended installation is via Composer.
composer require philandi/imgspector
Getting started
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');