Download the PHP package glukash/glu-image without Composer
On this page you can find all versions of the php package glukash/glu-image. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package glu-image
GluImage
glukash\glu-image
is a PHP image manipulation helper library.
The package includes ServiceProvider and Facade for easy Laravel 4 integration.
Purpose
- The package supports two image manipulation methods: resize and crop.
- Easly resize and crop jpg, png, and gif images.
- Supports animated gif using GD Library. (No Imagick, Gmagick is needed).
Dependencies
The package uses:
- Intervention/image
- glukash/GifCreator forked version of Sybio/GifCreator
- Sybio/GifFrameExtractor
Requirements
- PHP >=5.3
- GD Library (>=2.0)
Quick Installation
To install through composer, put the following in your composer.json
file:
Without adding the "repositories" key, composer will pull the original Sybio/GifCreator and you will not be able to chain methods on animated gif files after first save().
Laravel Integration
Add Intervention\Image
and Glukash\GluImage
service providers in app/config/app.php
.
Add GluImage
alias in app/config/app.php
.
If you want to use Intervention\Image
package directly, add InterImage
alias in app/config/app.php
.
This is not a necessary step for using GluImage
.
Code Examples
License
GluImage is licensed under the MIT License.
Copyright 2014 Lukasz Gaszyna
All versions of glu-image with dependencies
illuminate/support Version ~4.0
intervention/image Version 2.*
sybio/gif-frame-extractor Version 1.*
sybio/gif-creator Version 1.*