获取图片信息
OBJECT参数说明:
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
src | String | 是 | 图片的路径,可以是相对路径,临时文件路径,存储文件路径,网络图片路径 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明:
参数 | 类型 | 说明 |
---|---|---|
width | Number | 图片宽度,单位px |
height | Number | 图片高度,单位px |
path | String | 返回图片的本地路径 |
示例代码:
wx.getImageInfo({ src: 'images/a.jpg', success: function (res) { console.log(res.width) console.log(res.height) } }) wx.chooseImage({ success: function (res) { wx.getImageInfo({ src: res.tempFilePaths[0], success: function (res) { console.log('图片的本地路径:'+res.path+';图片宽:'+res.width+';图片高:'+res.height) } }) } })
打印出结果为:图片的本地路径:http://tmp/touristappid.o6zAJsz5KclCE2iBFhjLMX-0BbC8.703cc46f8de4c2152e6e838855ef2b82.png;图片宽:347;图片高:160