getImageInfo
解释:获取图片信息
参数:Object
Object参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
src | String | 是 | 图片的路径,可以是相对路径、临时文件路径或存储文件路径、网络图片。 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
width | Number | 图片宽度(单位:px) |
height | Number | 图片高度(单位:px) |
path | String | 返回图片的本地路径 |
orientation | String | 返回图片的方向: · up:默认不变; ·down:180度旋转; ·left:逆时针90度旋转; ·right:顺时针90度旋转; · up-mirrored:镜像翻转; · down-mirrored:镜像180旋转; · left-mirrored:逆时针90度镜像旋转; · right-mirrored:顺时针90度镜像旋转。 |
type | String | 返回图片的格式 |
示例:
- swan.getImageInfo({
src: '/xxx/xxx.jpg',
success: function (res) {
// 成功则返回图片高,宽,本地路径
console.log(res.width);
console.log(res.height);
console.log(res.path);
},
fail: function (err) {
console.log('错误码:' + err.errCode);
console.log('错误信息:' + err.errMsg);
}
});