├── .editorconfig ├── .gitignore ├── .travis.yml ├── .wordpress-org ├── screenshot-1.jpg ├── screenshot-2.jpg ├── screenshot-3.jpg ├── screenshot-4.jpg ├── screenshot-5.jpg └── screenshot-6.jpg ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── includes ├── class-smartcrop-wp-image-editor-gd.php ├── class-smartcrop-wp-image-editor-imagick.php ├── trait-smartcrop-image-analysis.php └── trait-smartcrop-wp-image-editor-common.php ├── phpcs.xml ├── phpunit.xml.dist ├── readme.txt ├── smartcrop.php └── tests ├── bin ├── install-imagick.sh └── install-wp-tests.sh ├── bootstrap.php └── test-image-editor.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.travis.yml -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-1.jpg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-2.jpg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-3.jpg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-4.jpg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-5.jpg -------------------------------------------------------------------------------- /.wordpress-org/screenshot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/.wordpress-org/screenshot-6.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/composer.lock -------------------------------------------------------------------------------- /includes/class-smartcrop-wp-image-editor-gd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/includes/class-smartcrop-wp-image-editor-gd.php -------------------------------------------------------------------------------- /includes/class-smartcrop-wp-image-editor-imagick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/includes/class-smartcrop-wp-image-editor-imagick.php -------------------------------------------------------------------------------- /includes/trait-smartcrop-image-analysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/includes/trait-smartcrop-image-analysis.php -------------------------------------------------------------------------------- /includes/trait-smartcrop-wp-image-editor-common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/includes/trait-smartcrop-wp-image-editor-common.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/readme.txt -------------------------------------------------------------------------------- /smartcrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/smartcrop.php -------------------------------------------------------------------------------- /tests/bin/install-imagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/tests/bin/install-imagick.sh -------------------------------------------------------------------------------- /tests/bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/tests/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-image-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viper007Bond/smartcrop/HEAD/tests/test-image-editor.php --------------------------------------------------------------------------------