A Laravel package to efficiently resize and optimize images, supporting multiple storage backends including local file systems and cloud storage like Amazon S3.
wizzou/laravel-image-optimizer is a Laravel package for a laravel package to efficiently resize and optimize images, supporting multiple storage backends including local file systems and cloud storage like amazon s3..
It currently has 0 GitHub stars and 33 downloads on Packagist (latest version v1.0.2).
Install it with composer require wizzou/laravel-image-optimizer.
Discover more Laravel packages by wizzou
or browse all Laravel packages to compare alternatives.
Last updated
The wizzou/laravel-image-optimizer package provides a convenient solution for dynamically resizing and optimizing images in Laravel applications. It automates the process of image resizing, optimizing file sizes, and storing images in different storage backends such as local filesystems or cloud storage services like Amazon S3.
You can install the package via Composer. Run the following command in your terminal:
composer require wizzou/laravel-image-optimizer
After installing the package, the ImageOptimizer service will be available for use in your Laravel application.
Publish the configuration file using the following Artisan command:
php artisan vendor:publish --provider="Wizzou\ImageOptimizer\ImageOptimizerServiceProvider"
This will create a config/image-optimizer.php file where you can configure the package settings.
The configuration file allows you to customize various aspects of the image optimization process:
public, s3).webp, jpg, png).Modify these settings according to your application's requirements.
You can use the ImageOptimizer service to resize and optimize images in your Laravel application. Here's how you can use it in your code:
use Wizzou\ImageOptimizer\Facades\ImageOptimizer;
// Resize and optimize an image
$imageUrl = 'example.jpg';
$resizedImageUrl = ImageOptimizer::resize($imageUrl, 800, 600);
or
{{-- Example Blade Template --}}
<img src="{{ ImageOptimizer::resize('example.jpg', 800, 600) }}" alt="Resized Image">
The resize method accepts the URL of the original image, as well as the desired width and height for the resized image. Optionally, you can specify the desired file format for the resized image as the fourth parameter.
If you have suggestions for how this package could be improved, or if you've found a bug, please open an issue on GitHub.
Pull requests are also welcome! Please ensure that your code adheres to the PSR-12 coding standard and includes appropriate tests.
The wizzou/laravel-image-optimizer package is open-source software licensed under the BSD-2-Clause.