barnebys/bimp-php
Composer 安装命令:
composer require barnebys/bimp-php
包简介
Barnebys Image Processor PHP Client
关键字:
README 文档
README
Barnebys Image Processor
This is an helper for PHP to build image URL for Barnebys Image Processor with ease.
Resize image
// Create the URL Builder with your bimp domain & secret
$urlBuilder = new UrlBuilder('bimp.yourdomain.com', 'test');
$urlBuilder->setWidth(200);
// Get the signed image URL
$url = $urlBuilder->createURL();
Crop image
$urlBuilder = new UrlBuilder('bimp.yourdomain.com', 'test');
$urlBuilder->setSize(200,200);
Crop image and set gravity
$urlBuilder = new UrlBuilder('bimp.yourdomain.com', 'test');
$urlBuilder
->setSize(200,200)
->setCrop('north');
See Barnebys Image Processor for documentation for available crop gravities & strategies.
统计信息
- 总下载量: 494
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-05