Simple Image procesing for Laravel 5 - wrapper for intervention/image
poznet/image is a Laravel package for simple image procesing for laravel 5 - wrapper for intervention/image .
It currently has 2 GitHub stars and 157 downloads on Packagist (latest version 0.0.1).
Install it with composer require poznet/image.
Discover more Laravel packages by poznet
or browse all Laravel packages to compare alternatives.
Last updated
Bundle/Service created for simple dynamic image manipulation (resize for example). Stores manipulated images in cache for better performance.
###Requirments
###Installation
composer require poznet/image:dev-master
providers' => [
/*
* Laravel Framework Service Providers...
*/
...
'Poznet\Image\PoznetImageProvider',
],
###Usage All paths is relative to /storage/app/ and it's get by Storage Facade (local), so it can be easily change to ftp/scp/Amazon/Dropbox etc.
<img src="{{route('imagemin', ['width'=>'450','path'=>'logo.jpg'])}}">
Intervention Imagecache Class is licensed under the MIT License. Feel free to contribute.