karagulle/image-resizer is a Laravel package for description.
It currently has 0 GitHub stars and 62 downloads on Packagist (latest version v0.1.27).
Install it with composer require karagulle/image-resizer.
Discover more Laravel packages by karagulle
or browse all Laravel packages to compare alternatives.
Last updated
With this package, you can compress and resize your photos in the storage areas to the desired dimensions and extension via the image manipulation package.
Bu paket ile image intervention paketi üzerinden storage klasöründe bulunan fotoğraflarınızı istediğiniz boyutta ve uzanttı da sıkıştırıp yeniden boyutlandırabilirsiniz.
composer require karagulle/image-resizer
"karagulle/image-resizer": "^0.1"
composer install
Karagulle\ImageResizer\ImageResizerProvider::class,
'ImageResizer' => Karagulle\ImageResizer\Facades\ImageResizerFacade::class
php artisan vendor:publish --provider="Karagulle\ImageResizer\ImageResizerProvider" --tag="config" --force
php artisan storage:link
<img src="{{ ImageResizer::open('mountain.jpeg')}}" width="200" height="200" alt="">
<img src="{{ ImageResizer::open('mountain.jpeg', 300, 400)}}" width="200" height="200" alt="">
<img src="{{ ImageResizer::open('mountain.jpeg', 300, 400, 'webp')}}" width="200" height="200" alt="">