2017 © Pedro Peláez
 

library image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

image

hisuley/image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  • Wednesday, February 1, 2017
  • by suley
  • Repository
  • 1 Watchers
  • 0 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 56 Forks
  • 0 Open issues
  • 35 Versions
  • 0 % Grown

The README.md

Laravel Image

Laravel Image is an image manipulation package for Laravel 4 and 5 based on the PHP Imagine library. It is inspired by Croppa as it can use specially formatted urls to do the manipulations. It supports basic image manipulations such as resize, crop, rotation and flip. It also supports effects such as negative, grayscale, gamma, colorize and blur. You can also define custom filters for greater flexibility., (*1)

Latest Stable Version Build Status Total Downloads, (*2)

The main difference between this package and other image manipulation libraries is that you can use parameters directly in the url to manipulate the image. A manipulated version of the image is then saved in the same path as the original image, creating a static version of the file and bypassing PHP for all future requests., (*3)

For example, if you have an image at this URL:, (*4)

/uploads/photo.jpg

To create a 300x300 version of this image in black and white, you use the URL:, (*5)

/uploads/photo-image(300x300-crop-grayscale).jpg

To help you generate the URL to an image, you can use the Image::url() method, (*6)

Image::url('/uploads/photo.jpg',300,300,array('crop','grayscale'));

or, (*7)

<img src="<?=Image::url('/uploads/photo.jpg',300,300,array('crop','grayscale'))?>" />

Alternatively, you can programmatically manipulate images using the Image::make() method. It supports all the same options as the Image::url() method., (*8)

Image::make('/uploads/photo.jpg',array(
    'width' => 300,
    'height' => 300,
    'grayscale' => true
))->save('/path/to/the/thumbnail.jpg');

or use directly the Imagine library, (*9)

$thumbnail = Image::open('/uploads/photo.jpg')
            ->thumbnail(new Imagine\Image\Box(300,300));

$thumbnail->effects()->grayscale();

$thumbnail->save('/path/to/the/thumbnail.jpg');

Features

This package use Imagine for image manipulation. Imagine is compatible with GD2, Imagick, Gmagick and supports a lot of features., (*10)

This package also provides some common filters ready to use (more on this): - Resize - Crop (with position) - Rotation - Black and white - Invert - Gamma - Blur - Colorization - Interlace, (*11)

Version Compatibility

Laravel Image
4.2.x 0.1.x
5.0.x 0.2.x
5.1.x 0.3.x
5.2.x 0.3.x

Installation

Dependencies:

Server Requirements:

Installation:

1- Require the package via Composer in your composer.json., (*12)

{
    "require": {
        "folklore/image": "0.3.*"
    }
}

2- Run Composer to install or update the new requirement., (*13)

$ composer install

or, (*14)

$ composer update

3- Add the service provider to your app/config/app.php file, (*15)

'Folklore\Image\ImageServiceProvider',

4- Add the facade to your app/config/app.php file, (*16)

'Image' => 'Folklore\Image\Facades\Image',

5- Publish the configuration file and public files, (*17)

$ php artisan vendor:publish --provider="Folklore\Image\ImageServiceProvider"

6- Review the configuration file, (*18)

app/config/image.php

Documentation

Roadmap

Here are some features we would like to add in the future. Feel free to collaborate and improve this library., (*19)

  • More built-in filters such as Brightness and Contrast
  • More configuration when serving images
  • Artisan command to manipulate images
  • Support for batch operations on multiple files

The Versions

01/02 2017

dev-master

9999999-dev http://github.com/hisuley/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

04/10 2016

dev-develop

dev-develop http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

04/10 2016

v0.3.16

0.3.16.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

12/09 2016

v0.3.15

0.3.15.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

12/09 2016

v0.3.14

0.3.14.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

12/09 2016

v0.3.13

0.3.13.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

12/09 2016

v0.3.12

0.3.12.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

12/09 2016

v0.3.11

0.3.11.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

30/05 2016

v0.3.10

0.3.10.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

11/05 2016

v0.3.9

0.3.9.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.8

0.3.8.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.7

0.3.7.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.6

0.3.6.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.5

0.3.5.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.4

0.3.4.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.3

0.3.3.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

dev-feature/proxy

dev-feature/proxy http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/02 2016

v0.3.2

0.3.2.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

01/01 2016

v0.3.1

0.3.1.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

01/01 2016

v0.3.0

0.3.0.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

01/01 2016

v0.2.5

0.2.5.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

22/10 2015

dev-feature/metadatareader

dev-feature/metadatareader http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

29/06 2015

v0.2.4

0.2.4.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

29/06 2015

v0.1.6

0.1.6.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

11/04 2015

v0.2.3

0.2.3.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

20/03 2015

v0.2.2

0.2.2.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

05/03 2015

v0.2.1

0.2.1.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

05/03 2015

v0.2.0

0.2.0.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

30/01 2015

v0.1.5

0.1.5.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

30/01 2015

v0.1.4

0.1.4.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

06/08 2014

v0.1.3

0.1.3.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

08/07 2014

v0.1.2

0.1.2.0 http://github.com/Folkloreatelier/laravel-image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

04/06 2014

v0.1.1

0.1.1.0 http://github.com/Folkloreatelier/image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick

04/02 2014

v0.1.0

0.1.0.0 http://github.com/Folkloreatelier/image

Image manipulation library for Laravel 4 based on Imagine and inspired by Croppa for easy url based manipulation

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel image gd imagick thumbnail watermark imagine gmagick