maciekpaprocki/imageprofessor
Composer 安装命令:
composer require maciekpaprocki/imageprofessor
包简介
Independent image processor with routing and caching
README 文档
README
#Easy image processor microservice.
Unfortunately most of the image processors built-in in standard cms's are not good enough for more advanced usecases. In cases like that you want to use microservice to show process your images in more gentle way. =
Instalation
composer install maciekpaprocki/imageprofessor
Be sure that you have imagemagick(preferred)||GD installed on your server.
Usage
Define image processor name, paths and transformation.
use ImageProfessor\ImageProfessor; var $thumbnail = New ImageProfessor('thumbnail','assets/*',function($image){ return $image->thumbnail(200,200) ->placeImage('thisisyourwatermarkimage.png'); },'cache');
Because we are using Imanee package for image tranformation, you have whole array of possibilities.
To get link to image just use:
echo $thumbnail->getUrl('path/to.jpg');
to process all images use (require app autoloader):
$thumbnail->process();
to process one image use (require app autoloader):
$thumbnail->process('path/to.jpg');
Future api
Bescause it's extremally annoying to each time get all variables for one file it's better to just use
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-08-11