creolab/image

Manipulate images, create thumbs, crop...
663 9
Install
composer require creolab/image
PHP:>=5.3.0
Last Updated:Oct 15, 2014
Links: GitHub  ·  Packagist
Maintainer: bstrahija

Image

Resize, crop and cache images for Laravel 4. Framework agnostic coming soon.

Installation

Simply add the following to your composer.json file:

"creolab/image": "dev-master"

And you can also add the service provider to app/config/app.php:

'Creolab\Image\ImageServiceProvider',

And register the facade in the same file under aliases:

'Image' => 'Creolab\Image\ImageFacade',

Usage

You can use the library directly in your views like this:

<img src="https://raw.githubusercontent.com/creolab/image/HEAD/{{ Image::resize('public/path/to/image.jpg', 640, 480) }}">

Also to generate square thumbs:

<img src="https://raw.githubusercontent.com/creolab/image/HEAD/{{ Image::thumb('public/path/to/image.jpg', 80) }}">

Bitdeli Badge