1.0.2 • Published 3 years ago

oss-src v1.0.2

Weekly downloads
3
License
ISC
Repository
github
Last release
3 years ago

dispose aliyun oss url

  • 图片缩放
  • 图片水印
  • 质量变换
  • 格式转换
  • 图片水印
  1. install
yarn add oss-src
// or
npm install oss-src
  1. use
import OssSrc from 'oss-src';
// change image type
const newUrl = new OssSrc('https://image-demo.oss-cn-hangzhou.aliyuncs.com/example.jpg').format('webp').getUrl();

to-webp

// add watermark
const newUrl = new OssSrc('https://image-demo.oss-cn-hangzhou.aliyuncs.com/example.jpg')
.watermarkLocation(100, 'center', 1, 1, 1)
.watermarkText('我们')
.getUrl(),

to-webp