ysaroka/autothumb

AutoThumb, PHP library to automatically create thumbnails

0.1.1 2018-11-10 11:36 UTC

This package is not auto-updated.

Last update: 2024-04-24 10:10:05 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.