| Package Data | |
|---|---|
| Maintainer Username: | approached |
| Maintainer Contact: | alexejkloos@gmail.com (Alexej Kloos) |
| Package Create Date: | 2015-06-25 |
| Package Last Update: | 2018-03-05 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-27 03:07:14 |
| Package Statistics | |
|---|---|
| Total Downloads: | 142,534 |
| Monthly Downloads: | 278 |
| Daily Downloads: | 0 |
| Total Stars: | 153 |
| Total Watchers: | 9 |
| Total Forks: | 32 |
| Total Open Issues: | 3 |
This package is now deprecated. I prefer to use spatie/image-optimizer package. Because this code is better structured.
With this package you can easy optimize your image in laravel 5.x or lumen. Read the google instruction https://developers.google.com/speed/docs/insights/OptimizeImages about image optimize.
Recommend convert packages:
sudo apt-get install pngquant gifsicle jpegoptim
composer require approached/laravel-image-optimizer
config/app.php
Approached\LaravelImageOptimizer\ServiceProvider::class,
php artisan vendor:publish --tag=imageoptimizer
If you want to run the ImageOptimizer automatically for all the uploaded images:
Route::post('admin/image/upload', function () {
$picture = $request->file('picture');
...
})->middleware('AutoImageOptimizer');
On uploading a file:
public function store(Request $request, ImageOptimizer $imageOptimizer)
{
$picture = $request->file('picture');
// optimize
$imageOptimizer->optimizeUploadedImageFile($picture);
// save
Storage::put('/my/cool/path/test.jpg', File::get($picture));
...
}
MIT