swiss-devjoy/laravel-image-transformations
Composer 安装命令:
composer require swiss-devjoy/laravel-image-transformations
包简介
Add Cloudflare-like image transformations to your app
README 文档
README
Add Cloudflare-like image transformations with security features to your app, inspired by Aaron Francis's image proxy implementation.
Features
- Transform images on-the-fly with simple URL parameters
- Support for various transformations (resize, blur, rotate, brightness, contrast, format conversion, quality)
- Secure URL signing to prevent abuse
- Rate limiting option for unsigned URLs to prevent abuse
- Browser and CDN-friendly caching
- Zero disk storage for transformed images (HTTP caching only)
Installation
You can install the package via composer:
composer require swiss-devjoy/laravel-image-transformations
You can publish the config file with:
php artisan vendor:publish --tag="laravel-image-transformations-config"
Configuration
The package comes with sensible defaults, but you can customize the behavior:
return [ // Enable/disable all image transformations 'enabled' => env('IMAGE_TRANSFORMATIONS_ENABLED', true), // Cache control headers for browser and CDN caching // Sets 30-day cache with immutable flag to improve performance 'cache_control_headers' => 'public, max-age=2592000, s-maxage=2592000, immutable', // URL route prefix for all transformed images // Example: /img/options/path-to-image.jpg 'url_prefix' => '/img', // Default compression quality (1-100) for supported formats // Higher values mean better quality but larger file sizes 'default_quality' => 90, // Security option 1: Cryptographic URL signing // When enabled, prevents unauthorized image transformations by adding a signature hash to URLs // Example: /img/[signature-hash]/options/path-to-image.jpg 'signed_urls' => true, // Security option 2: Rate limiting // Controls the frequency of transformation requests from the same client // Note: Use either signed_urls OR ratelimiter (not both simultaneously) 'ratelimiter' => [ // Enable rate limiting for transformation requests // Must be disabled when signed_urls is enabled 'enabled' => false, // Cache store for rate limiter counters // File-based store recommended to avoid edge case issues like database locks // Options: 'file', 'redis', 'database', etc. from config('cache.stores') 'store' => env('IMAGE_TRANSFORMATIONS_RATELIMITER_STORE', 'file'), // Maximum transformation requests allowed per minute per IP // Adjust based on your application's needs and expected traffic 'max_attempts' => 2, ], ];
Usage
Basic Example
Original image reference:
<img src="/images/profile.jpg" width="500" height="500">
With transformation:
<img src="{{ transformImage('images/profile.jpg', 'width=300,format=webp,quality=80') }}" width="300" height="300">
Transformation Options
| Option | Description | Example |
|---|---|---|
width |
Scale down to specified width (maintains aspect ratio) | width=300 |
height |
Scale down to specified height (maintains aspect ratio) | height=200 |
format |
Convert image format | format=webp |
quality |
Set compression quality (1-100) | quality=80 |
blur |
Apply blur effect (1-100) | blur=10 |
rotate |
Rotate image (degrees) | rotate=90 |
brightness |
Adjust brightness | brightness=15 |
contrast |
Adjust contrast | contrast=25 |
Security Options
Option 1: Signed URLs (Recommended)
Secure your transformations with cryptographic signatures:
// config/image-transformations.php 'signed_urls' => true,
This generates a signed URL like:
/img/100000b3fe067c19625e10ccb1959320e65a7d34d43d9d4d48d3df95691f6f03/width=300,format=webp,quality=80/images/profile.jpg
Option 2: Rate Limiting
If you prefer not to use signatures:
// config/image-transformations.php 'signed_urls' => false, 'ratelimiter' => [ 'enabled' => true, ],
Direct URLs:
/img/width=300,format=webp,quality=80/images/profile.jpg
Performance Considerations
- Images are transformed on-the-fly
- No disk storage is used for transformed images
- HTTP caching with appropriate headers (30 days by default)
- Works best with CDNs for edge caching
Example Use Cases
Responsive Images
<picture> <source srcset="{{ transformImage('images/hero.jpg', 'width=1200,format=webp') }}" media="(min-width: 800px)" type="image/webp"> <source srcset="{{ transformImage('images/hero.jpg', 'width=800,format=webp') }}" media="(min-width: 600px)" type="image/webp"> <img src="{{ transformImage('images/hero.jpg', 'width=400,format=webp') }}" alt="Hero image"> </picture>
Creative Effects
<img src="{{ transformImage('images/profile.jpg', 'blur=5,contrast=10,brightness=5') }}" alt="Stylized profile">
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
swiss-devjoy/laravel-image-transformations 适用场景与选型建议
swiss-devjoy/laravel-image-transformations 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.93k 次下载、GitHub Stars 达 11, 最近一次更新时间为 2025 年 04 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「devjoy.ch」 「laravel-image-transformations」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 swiss-devjoy/laravel-image-transformations 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 swiss-devjoy/laravel-image-transformations 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 swiss-devjoy/laravel-image-transformations 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Optimize your SQLite database for production in Laravel
Put chunks of your Blade template into immutable static cache files
Easy HashIds for Laravel Eloquent models with Livewire Support
Alfabank REST API integration
Laravel package for Accurate Online API integration.
Shared RCX Laravel DataTables UI and configuration helpers.
统计信息
- 总下载量: 1.93k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-04-17