jancyril/glide-for-laravel

A wrapper for League/Glide to easily manipulate images in Laravel 5

v1.0.2 2017-05-02 23:59 UTC

This package is auto-updated.

Last update: 2024-04-25 20:47:26 UTC


README

Build Status

A wrapper to easily use Glide in Laravel 5.

Installation

Download via composer:

composer require jancyril/glide-for-laravel

Add the GlideServiceProvider to your config/app.php inside the providers array:

'providers' => [
    JanCyril\Glide\GlideServiceProvider::class,
];

Publish the config file for this package:

php artisan vendor:publish --provider="JanCyril\Glide\GlideServiceProvider"

Modify the values of your config/glide.php file to suit your needs.

Usage

Inject JanCyril\Glide\Glide in the class that will use it.

Resizing an image:

$this->glide->image($imagePath)
            ->resize(200,200)
            ->save($outputFile);

Adding a watermark to the image:

$this->glide->image($imagePath)
            ->addWatermark($watermarkImage)
            ->save($outputFile);

Manipulate image using available parameters from glide:

$parameters = [
    'w' => 200,
    'h' => 200,
    'fit' => fill,
];

$this->glide->image($imagePath)
            ->manipulate($parameters)
            ->save($outputFile);

To see all available parameters visit Glide Page.

Dynamic image manipulation via route:

http://localhost/image/sample_image.jpg?w=200

You can pass parameters as query string to your URL.

The image segment in the URL can be changed in your config/glide.php.