orchestra/imagine is a Laravel package for imagine (wrapper) component for laravel.
It currently has 66 GitHub stars and 219.205 downloads on Packagist (latest version v6.0.0).
Install it with composer require orchestra/imagine.
Discover more Laravel packages by orchestra
or browse all Laravel packages to compare alternatives.
Last updated
Imagine (Wrapper) Component is a Laravel package wrapper for Imagine.
Laravel | Imagine :----------|:---------- 5.5.x | 3.5.x 5.6.x | 3.6.x 5.7.x | 3.7.x 5.8.x | 3.8.x 6.x | 4.x 7.x | 5.x 8.x | 6.x
To install through composer, run the following command from terminal:
composer require "orchestra/imagine"
Add Orchestra\Imagine\ImagineServiceProvider service provider in config/app.php.
'providers' => [
// ...
Orchestra\Imagine\ImagineServiceProvider::class,
],
Add Imagine alias in config/app.php.
'aliases' => [
// ...
'Imagine' => Orchestra\Imagine\Facade::class,
],
Here a simple example how to create a thumbnail from an image:
<?php
use Imagine\Image\ImageInterface;
use Orchestra\Imagine\Jobs\CreateThumbnail;
dispatch(new CreateThumbnail([
'path' => $path,
'filename' => $filename, // filename without extension
'extension' => $extension,
'format' => '{filename}.thumb.{extension}',
'dimension' => 320, // width and height will be 320.
'mode' => ImageInterface::THUMBNAIL_OUTBOUND,
'filter' => ImageInterface::FILTER_UNDEFINED,
]));