wizzou/laravel-image-optimizer 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wizzou/laravel-image-optimizer

最新稳定版本:v1.0.2

Composer 安装命令:

composer require wizzou/laravel-image-optimizer

包简介

A Laravel package to efficiently resize and optimize images, supporting multiple storage backends including local file systems and cloud storage like Amazon S3.

README 文档

README

Latest Stable Version Total Downloads License

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.

Installation

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.

Configuration

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.

Configuration Options

The configuration file allows you to customize various aspects of the image optimization process:

  • Default Quality: The default quality setting (0-100) for image compression.
  • Storage Disk: The disk where optimized images will be stored (e.g., public, s3).
  • Storage Path: The directory path within the chosen disk where images will be stored.
  • Default Format: The default file format for image conversion (e.g., webp, jpg, png).

Modify these settings according to your application's requirements.

Usage

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.

Contributing

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.

License

The wizzou/laravel-image-optimizer package is open-source software licensed under the BSD-2-Clause.

统计信息

  • 总下载量: 30
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-2-Clause
  • 更新时间: 2024-04-15