gitextract_u4kyp6r5/ ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── example/ │ ├── blur.php │ ├── bootstrap.php │ ├── crop-balanced.php │ ├── facedetect.php │ ├── opacity.php │ ├── quality.php │ ├── rotate.php │ ├── watermark.php │ └── webp.php ├── phpunit.xml ├── src/ │ ├── Crops/ │ │ ├── Balanced.php │ │ ├── CropInterface.php │ │ ├── Entropy.php │ │ ├── Face.php │ │ ├── LICENCE │ │ └── classifier/ │ │ ├── haarcascade_frontalface_alt.xml │ │ ├── haarcascade_frontalface_alt2.xml │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ ├── haarcascade_frontalface_default.xml │ │ └── haarcascade_profileface.xml │ ├── Image.php │ ├── ImageException.php │ ├── Libs/ │ │ ├── AbstractLib.php │ │ ├── Gd.php │ │ ├── Imagick.php │ │ ├── LibInterface.php │ │ └── icc/ │ │ ├── black_us_web_uncoated.icm │ │ ├── srgb.icm │ │ └── us_web_uncoated.icc │ ├── Utils/ │ │ ├── Color.php │ │ ├── Dimmensions.php │ │ ├── IconExtractor.php │ │ └── SvgExtractor.php │ └── autoloader.php └── tests/ ├── DimmensionsTest.php ├── GdTest.php ├── IconTest.php ├── ImageTest_.php ├── ImagickTest.php └── bootstrap.php