ysaroka / autothumb
AutoThumb, PHP library to automatically create thumbnails
Requires
- php: >=5.4.0
- imanee/imanee: ^1.2
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2025-02-12 14:17:09 UTC
README
AutoThumb, PHP library to automatically create thumbnails.
Requirements
AutoThumb requires PHP >= 5.4 , and one of the following image extensions for PHP: Imagick or GD.
Installation
First make sure you have either Imagick or GD installed and enabled on your PHP server. AutoThumb uses a Imanee library that will try to use GD if Imagick is not found in the system.
You can add AutoThumb to your project using the Composer package manager:
$ composer require ysaroka/autothumb
Getting Started
Install demo project using the Composer package manager in document root directory of the web server (in demo used web server Apache):
$ composer create-project ysaroka/autothumb-demo ./
The repository with the demo project is available here: ysaroka/autothumb-demo.