mmanos / laravel-image by mmanos

An image management package for Laravel 4.
69
8
2
Package Data
Maintainer Username: mmanos
Maintainer Contact: mark@airpac.com (Mark Manos)
Package Create Date: 2014-09-04
Package Last Update: 2015-02-24
Language: PHP
License: MIT
Last Refreshed: 2024-04-14 15:06:01
Package Statistics
Total Downloads: 69
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 8
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Image Package for Laravel 4

This package provides the ability to conveniently work with uploaded images. It includes an images table and model, and has the ability to provide multiple versions of the same image with different dimensions, generated on demand.

Dependencies

This package relies on the laravel-storage to manage the image files, which supports writing to the local filesystem or the Amazon S3 service.

Installation Via Composer

Add this to you composer.json file, in the require object:

"mmanos/laravel-image": "dev-master"

After that, run composer install to install the package.

Add the service provider to app/config/app.php, within the providers array.

'providers' => array(
	// ...
	'Mmanos\Image\ImageServiceProvider',
)

Add a class alias to app/config/app.php, within the aliases array.

'aliases' => array(
	// ...
	'Image' => 'Mmanos\Image\Image',
)

Configuration

Publish the default config file to your application so you can make modifications.

$ php artisan config:publish mmanos/laravel-image

Publish and run the database migrations for this package.

$ php artisan migrate:publish mmanos/laravel-image
$ php artisan migrate

Note: Don't forget to create the writable directory used by the Storage package, if using the local filesystem driver.

Usage

Creating Images

Create an image from image data:

$image = Image::put($contents);

Create an image from an uploaded image file:

$image = Image::upload($_FILES['image']);

Create an image from a file on the filesystem:

$image = Image::copy($path);

Create an image from a URL to an image:

$image = Image::copyUrl($url);

Using Images

Get URL to the original image:

$url = $image->url();

Get URL to image constrained to 128px (best fit, maintaining aspect ratio):

$url = $image->url('128');

Get URL to image constrained to 128px in height (maintaining aspect ratio):

$url = $image->url('128h');

Get URL to image constrained to 128px in width (maintaining aspect ratio):

$url = $image->url('128w');

Get URL to image cropped to a 128px square:

$url = $image->url('128s');

Note: You may pass any arbitrary integer value for the image dimension.