getImageInfo

解释:获取图片信息

参数:Object

Object参数说明:

参数类型必填说明
srcString图片的路径,可以是相对路径、临时文件路径或存储文件路径、网络图片。
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数类型说明
widthNumber图片宽度(单位:px)
heightNumber图片高度(单位:px)
pathString返回图片的本地路径
orientationString返回图片的方向:
· up:默认不变;

·down:180度旋转;

·left:逆时针90度旋转;

·right:顺时针90度旋转;

· up-mirrored:镜像翻转;

· down-mirrored:镜像180旋转;

· left-mirrored:逆时针90度镜像旋转;

· right-mirrored:顺时针90度镜像旋转。
typeString返回图片的格式

示例:

  1. 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);
    }
    });