ek.compressImage
支持 Promise
压缩图片。
参数
参数 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
src | string | 是 | 图片的路径,支持本地路径、代码包路径 | |
quality | number | 否 | 压缩质量,范围0~100,数值越小,质量越低,压缩率越高 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
返回
属性 | 类型 | 说明 |
---|---|---|
tempFilePath | string | 压缩后图片的临时文件路径 (本地路径),jpg 格式 |
Example
ts
const res = await ek.compressImage({
src: 'nzfile://usr/image.png',
quality: 70
})
console.log(res.tempFilePath)