cdcchen / oss-image-url-maker
oss image url maker
1.0.5
2016-12-13 19:17 UTC
Requires
- php: >=5.6.0
Requires (Dev)
- phpunit/phpunit: ^6.4
This package is not auto-updated.
Last update: 2024-10-26 20:32:25 UTC
README
composer 安装
composer require cdcchen/oss-image-url-maker:^1.0.0
使用教程
实例化 Maker
use cdcchen\oss\ImageUrlMaker; $maker = new ImageUrlMaker($url);
获取预定义样式地址
$url = $maker->getStyleUrl($styleName);
获取参数方式地址
$url = $maker->fitByWidth($width)->getUrl();
or
$url = (string)$maker->fitByWidth($width);
参数方式预定义方法列表
缩放
resize($mode = null, $width = 0, $height = 0, $limit = null, $color = null)
resizeMFit($width = 0, $height = 0, $limit = null)
resizeLFit($width = 0, $height = 0, $limit = null)
resizeFill($width = 0, $height = 0, $limit = null)
resizePad($width = 0, $height = 0, $limit = null, $color = null)
resizeFixed($width = 0, $height = 0, $limit = null)
fitMaxSize($width = 0, $height = 0)
fitMinSize($width = 0, $height = 0)
fitByWidth($width)
fitByHeight($height)
fixedSize($width = 0, $height = 0)
fixedWidth($width)
fixedHeight($height)
裁剪
circle($radius)
roundedCorners($radius)
crop($width = 0, $height = 0, $x = 0, $y = 0, $g = null)
indexCropX($width, $i = 0)
indexCropY($height, $i = 0)
旋转
autoOrient($value = 1)
rotate($angle)
效果
blur($radius, $sigma)
bright($value)
contrast($value)
sharpen($value = 100)
格式
format($format, $interlace = false)
interlace($value = true)
quality($quality, $absolute = true)
水印
暂无