├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── bin └── install-wp-tests.sh ├── composer.json ├── phpunit.xml ├── readme.txt ├── tests ├── backgroundFillAutoTest.php ├── backgroundFillTest.php ├── bootstrap.php ├── cropFromPositionTest.php ├── cropResizeTest.php ├── cropTest.php ├── defaultImageTest.php ├── fileNamesTest.php ├── imageSizesTest.php ├── images │ ├── UpperCase.png │ ├── black.png │ ├── boxed-rectangle.png │ ├── boxed.png │ ├── checked.png │ ├── google │ ├── google.gif │ ├── google.png │ ├── icon.png │ ├── transparent.png │ ├── uppercase-extension.PNG │ └── white-10.png ├── manual │ └── default-image.php ├── phpunit.xml ├── postThumbnailTest.php ├── remoteImageTest.php ├── resizeTest.php ├── testCustomFilter.php └── watermarkTest.php ├── wpthumb.background-fill.php ├── wpthumb.crop-from-position.php ├── wpthumb.image-editor.php ├── wpthumb.php ├── wpthumb.shortcodes.php └── wpthumb.watermark.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | trunk -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/backgroundFillAutoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/backgroundFillAutoTest.php -------------------------------------------------------------------------------- /tests/backgroundFillTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/backgroundFillTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/cropFromPositionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/cropFromPositionTest.php -------------------------------------------------------------------------------- /tests/cropResizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/cropResizeTest.php -------------------------------------------------------------------------------- /tests/cropTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/cropTest.php -------------------------------------------------------------------------------- /tests/defaultImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/defaultImageTest.php -------------------------------------------------------------------------------- /tests/fileNamesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/fileNamesTest.php -------------------------------------------------------------------------------- /tests/imageSizesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/imageSizesTest.php -------------------------------------------------------------------------------- /tests/images/UpperCase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/UpperCase.png -------------------------------------------------------------------------------- /tests/images/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/black.png -------------------------------------------------------------------------------- /tests/images/boxed-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/boxed-rectangle.png -------------------------------------------------------------------------------- /tests/images/boxed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/boxed.png -------------------------------------------------------------------------------- /tests/images/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/checked.png -------------------------------------------------------------------------------- /tests/images/google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/google -------------------------------------------------------------------------------- /tests/images/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/google.gif -------------------------------------------------------------------------------- /tests/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/google.png -------------------------------------------------------------------------------- /tests/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/icon.png -------------------------------------------------------------------------------- /tests/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/transparent.png -------------------------------------------------------------------------------- /tests/images/uppercase-extension.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/uppercase-extension.PNG -------------------------------------------------------------------------------- /tests/images/white-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/images/white-10.png -------------------------------------------------------------------------------- /tests/manual/default-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/manual/default-image.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/postThumbnailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/postThumbnailTest.php -------------------------------------------------------------------------------- /tests/remoteImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/remoteImageTest.php -------------------------------------------------------------------------------- /tests/resizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/resizeTest.php -------------------------------------------------------------------------------- /tests/testCustomFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/testCustomFilter.php -------------------------------------------------------------------------------- /tests/watermarkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/tests/watermarkTest.php -------------------------------------------------------------------------------- /wpthumb.background-fill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.background-fill.php -------------------------------------------------------------------------------- /wpthumb.crop-from-position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.crop-from-position.php -------------------------------------------------------------------------------- /wpthumb.image-editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.image-editor.php -------------------------------------------------------------------------------- /wpthumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.php -------------------------------------------------------------------------------- /wpthumb.shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.shortcodes.php -------------------------------------------------------------------------------- /wpthumb.watermark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/WPThumb/HEAD/wpthumb.watermark.php --------------------------------------------------------------------------------