A wrapper for League/Glide to easily manipulate images in Laravel 5
jancyril/glide-for-laravel is a Laravel package for a wrapper for league/glide to easily manipulate images in laravel 5.
It currently has 1 GitHub stars and 16 downloads on Packagist (latest version v1.0.2).
Install it with composer require jancyril/glide-for-laravel.
Discover more Laravel packages by jancyril
or browse all Laravel packages to compare alternatives.
Last updated
A wrapper to easily use Glide in Laravel 5.
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.
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.