Download the PHP package grooveround/image without Composer
On this page you can find all versions of the php package grooveround/image. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download grooveround/image
More information about grooveround/image
Files in grooveround/image
Download grooveround/image
More information about grooveround/image
Files in grooveround/image
Vendor grooveround
Package image
Short Description Image optimizer, Cropper and Modifier
License MIT
Package image
Short Description Image optimizer, Cropper and Modifier
License MIT
Please rate this library. Is it a good library?
Informations about the package image
Image Manager for PHP using GD, Imagick, etc
Image optimizer, Cropper and Modifier
Usage Example:
Instantiation:
use grooveround\image\drivers\Gd;
use grooveround\image\drivers\Imagick;
use grooveround\image\ImageManager;
$imageManager = new ImageManager();
$imageManager->addDriver('imagick', new Imagick('/home/derick/Downloads/10286763_654936081227026_6178232705639774364_o.jpg'));
$imageManager->resizeImage('imagick', 2000, 2000);
$imageManager->saveImage('imagick', '/home/derick/Downloads/my-image-module.jpg');
Resize:
// Resize to 100 pixels on the shortest side
$imageManager->resizeImage(100, 100, OptimizerConstant::AUTO);
Crop:
// Crop the image to 200x200 pixels, from the center
$imageManager->cropImage(200, 200);
Rotate:
// Rotate 90% counter-clockwise
$imageManager->rotateImage(-90);
Flip:
//Flip the image from top to bottom
$imageManager->flipImage(OptimizerConstant::HORIZONTAL);
//Flip the image from left to right
$imageManager->flipImage(OptimizerConstant::VERTICAL);
So on...
Installation
The preferred way to install this extension is through composer.
Either run
or add
to the require section of your composer.json.
All versions of image with dependencies
PHP Build Version
Package Version
No informations.
The package grooveround/image contains the following files
Loading the files please wait ....