laravel-enso/imagetransformer 问题修复 & 功能扩展

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

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

laravel-enso/imagetransformer

最新稳定版本:2.5.4

Composer 安装命令:

composer require laravel-enso/imagetransformer

包简介

Image transformer dependency for Laravel Enso

README 文档

README

License Stable Downloads PHP Issues Merge Requests

Description

Image Transformer provides a small service for validating, resizing, and optimizing uploaded images.

It wraps Intervention Image for resize operations and Spatie's image optimizer for post-processing, while enforcing a limited set of supported image mime types before any transformation is attempted.

The package is useful in upload flows where images should be normalized before storage, for example avatars, covers, gallery images, or document attachments that need size limits and optimization.

Installation

Install the package:

composer require laravel-enso/image-transformer

The package relies on:

  • intervention/image-laravel for reading and resizing images
  • spatie/laravel-image-optimizer for optimization

To use resizing, the runtime must have at least one supported image extension installed:

  • gd
  • imagick

Features

  • Validates uploaded files before transformation.
  • Supports png, jpeg, gif, and webp images.
  • Optimizes images in place through Spatie's optimizer chain.
  • Resizes images proportionally by width, by height, or by both through resize().
  • Prevents upsizing by only resizing when the original image is larger than the requested dimension.
  • Saves transformations back to the original file path.

Usage

Create a transformer from an uploaded file:

use LaravelEnso\ImageTransformer\Services\ImageTransformer;

$transformer = new ImageTransformer($file);

Optimize the original file:

$transformer->optimize();

Resize proportionally to a maximum width:

$transformer->width(512);

Resize proportionally to a maximum height:

$transformer->height(512);

Apply both constraints in sequence:

$transformer->resize(1024, 768);

::: tip Tip The transformer edits the original file in place.

If you need to preserve the original upload, copy or move it before calling optimize(), width(), height(), or resize(). :::

API

Service

LaravelEnso\ImageTransformer\Services\ImageTransformer

Constructor:

  • __construct(File $file)

Public methods:

  • optimize(): self
  • resize(int $width, int $height): self
  • width(int $width): self
  • height(int $height): self

Supported Mime Types

The service accepts:

  • image/png
  • image/jpeg
  • image/gif
  • image/webp

Exceptions

The package exposes:

  • LaravelEnso\ImageTransformer\Exceptions\File
  • LaravelEnso\ImageTransformer\Exceptions\Dependency

Scenarios covered:

  • invalid uploaded file
  • unsupported mime type
  • missing gd / imagick extension when resizing

Depends On

Required Enso packages:

External dependencies:

Contributions

are welcome. Pull requests are great, but issues are good too.

Thank you to all the people who already contributed to Enso!

统计信息

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

GitHub 信息

  • Stars: 6
  • Watchers: 4
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固