ysaroka/autothumb

AutoThumb, PHP library to automatically create thumbnails


Keywords
php, image, cache, resize, thumb, auto, Thumbnails
License
ISC

Documentation

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.