michielkempen/laravel-glide
Composer 安装命令:
composer require michielkempen/laravel-glide
包简介
Leverage Glide to perform on the fly image manipulations in Laravel.
README 文档
README
Leverage Glide to perform on the fly image manipulations in Laravel.
Installation
Add the package to the dependencies of your application.
composer require michielkempen/laravel-glide
Configuration
Configure the package using environment variables.
<?php return [ 'source' => [ /* * The filesystem where the original files are stored. */ 'filesystem' => env('GLIDE_SOURCE_FILESYSTEM', 'public'), /* * The path within the filesystem where the original files are stored. */ 'path' => env('GLIDE_SOURCE_PATH', ''), ], 'cache' => [ /* * The filesystem where the manipulated files will be cached. */ 'filesystem' => env('GLIDE_CACHE_FILESYSTEM', 'public'), /* * The path within the filesystem where the manipulated files will be cached. */ 'path' => env('GLIDE_CACHE_PATH', 'cache/'), ], /* * The secret that is used to sign the manipulation requests. */ 'secret' => env('GLIDE_SECRET', 'secret'), /* * The prefix of the original files endpoint. */ 'file_endpoint_prefix' => env('FILE_ENDPOINT_PREFIX', '/storage/'), /* * The prefix of the manipulated files endpoint. */ 'glide_endpoint_prefix' => env('GLIDE_ENDPOINT_PREFIX', '/glide/'), ];
Usage
Here's a quick example that shows how an image can be modified:
$manipulatedImageUrl = glide($fileName, ['w'=> 50, 'filt'=>'greyscale']);
Take a look at Glide's image API to see which parameters you can pass to the method.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 329
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-06