Download the PHP package ripaclub/imgman without Composer
On this page you can find all versions of the php package ripaclub/imgman. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ripaclub/imgman
More information about ripaclub/imgman
Files in ripaclub/imgman
Package imgman
Short Description A library designed to create, modify, handle, and store images from any protocol
License BSD-2-Clause
Homepage https://github.com/ripaclub/imgman
Informations about the package imgman
Image manager
ImgMan is a library that allows you to create various image renditions from any PHP supported URL-style protocol containing a picture.
You can modify an image (e.g., resize, crop, format, fit in, fit out, rotate) and save different renditions stored in your configuration.
Requisites
-
PHP >= 5.5
-
Composer
- Imagick (the only adapter currently supported to manipulate image)
Features
ImgMan has various features:
-
Core
contains the engine that execute the operations on the image.
ImageMagick
is the only adapter present. -
Operation
Contains a class,
HelperPluginManager
, that is aAbstractPluginManager
where are config all operation that can attach to a rendition (i.e.Compression
,Crop
,FitIn
,FitOut
,Format
,Resize
,Rotate
,ScaleToHeight
,ScaleToWidth
) -
Storage
ImgMan allows you to save the image in several layers persistence, via
StorageInterface
objects (i.e.FileSystem
,Mongo
) -
Image
Contains the class used to the image
-
Service
A set of classes aimed at the instantiation of ImgMan service. With this service you can save the image in all renditions configured in the service (
grab
function) You can also save update, and delete an image in a specific redition
Installation
Install ImageImagick
(version > 3.1.2) in php extension.
Add ripaclub/imgman
to your composer.json
.
Configuration
Configure service manager with service factory (for storage and service), plugin manager and imagick adapter.
You can set only one storage configuration. Configure storage (e.g Mongo) where to save the images:
E.g aws configuration:
E.g filesystem configuration:
Configure ImgMan service with the storage, helper, adapter and the various operations to attach on the renditions:
Usage
Now we get the IgmMan service, load a picture from file stream (filesystem) and save it in 3 renditions (original, thumb, and thumbmaxi).
Finally, we can recover the image rendition we desire this way:
All versions of imgman with dependencies
zendframework/zend-servicemanager Version ~2.3
zendframework/zend-http Version ~2.3
zendframework/zend-stdlib Version ~2.3