├── LICENSE ├── README.md ├── composer.json └── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/composer.json -------------------------------------------------------------------------------- /src/Crops/Balanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/Balanced.php -------------------------------------------------------------------------------- /src/Crops/CropInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/CropInterface.php -------------------------------------------------------------------------------- /src/Crops/Entropy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/Entropy.php -------------------------------------------------------------------------------- /src/Crops/Face.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/Face.php -------------------------------------------------------------------------------- /src/Crops/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/LICENCE -------------------------------------------------------------------------------- /src/Crops/classifier/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/classifier/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /src/Crops/classifier/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/classifier/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /src/Crops/classifier/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/classifier/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /src/Crops/classifier/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/classifier/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /src/Crops/classifier/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Crops/classifier/haarcascade_profileface.xml -------------------------------------------------------------------------------- /src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Image.php -------------------------------------------------------------------------------- /src/ImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/ImageException.php -------------------------------------------------------------------------------- /src/Libs/AbstractLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/AbstractLib.php -------------------------------------------------------------------------------- /src/Libs/Gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/Gd.php -------------------------------------------------------------------------------- /src/Libs/Imagick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/Imagick.php -------------------------------------------------------------------------------- /src/Libs/LibInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/LibInterface.php -------------------------------------------------------------------------------- /src/Libs/icc/black_us_web_uncoated.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/icc/black_us_web_uncoated.icm -------------------------------------------------------------------------------- /src/Libs/icc/srgb.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/icc/srgb.icm -------------------------------------------------------------------------------- /src/Libs/icc/us_web_uncoated.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Libs/icc/us_web_uncoated.icc -------------------------------------------------------------------------------- /src/Utils/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Utils/Color.php -------------------------------------------------------------------------------- /src/Utils/Dimmensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Utils/Dimmensions.php -------------------------------------------------------------------------------- /src/Utils/IconExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Utils/IconExtractor.php -------------------------------------------------------------------------------- /src/Utils/SvgExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/Utils/SvgExtractor.php -------------------------------------------------------------------------------- /src/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarotero/imagecow/HEAD/src/autoloader.php --------------------------------------------------------------------------------