dlt.compressImage
简介
压缩图片接口,可选压缩质量。
使用限制
基础库从 3.0.0
或更高版本支持。
参数
Object object
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
src | string | 是 | 图片的路径;支持本地路径、代码包路径 | |
quality | number | 80 | 否 | 压缩质量,范围 0 ~ 100,数值越小,质量越低,压缩率越高 |
compressedWidth | number | 否 | 压缩后图片的宽度,单位为 px,若不填写则默认以 compressedHeight 为准等比缩放。 | |
compressedHeight | number | 否 | 压缩后图片的高度,单位为 px,若不填写则默认以 compressedWidth 为准等比缩放。 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
success | string | true-成功 |
tempFilePath | string | 压缩后图片的临时文件路径 (本地路径) |
object.fail 回调函数
参数
Object res
属性 | 类型 | 说明 |
---|---|---|
errMsg | string | 1. Parameter error: AS10001 2. Quality must be 0..100: CI10002 3. 3. Original file not exists: CI10003 |
success | string | false-失败 |
示例代码
// pages/index/index.js
Page({
compressImage() {
dlt.compressImage({
src: "", // 图片路径
quality: 80, // 压缩质量
});
},
});