1Introduction
- description:image utils
- author:#云淡然
- create:未明确
- update:未明确
- github:https://github.com/blearjs/blear.utils.image
2Example
var image = require('blear.utils.image');
3Static
3.1.supportWebp(callback(supportWebp)): undefined
判断浏览器是否支持 webp,异步。
image.supportWebp(function(support) {
console.log(support ? '支持' : '不支持', 'webp')
});
3.1.1callback
- 类型:
Function
- 说明:回调
3.1.1.1callback: this
- 类型:
this
- 说明:null
3.1.1.2callback: supportWebp
- 类型:
Boolean
- 说明:支持为
true
,否则为false
3.2.qiniuWebp(url): webpURL
七牛云存储的 webp 图片处理,使用的是 imageView2。
image.qiniuWebp('http:/a.b/c.png');
// => http://a.b/c.png?imageView2/2/format/webp
3.2.1url
- 类型:
String
- 说明:七牛云存储图片 url
3.2.2webpURL
- 类型:
String
- 说明:处理过后的 url