图片能否被旋转
请问通过小程序api拍摄到的图片,是否能够获取到图片的拍摄角度,而且如果图片是横向拍摄,我能否将图片转转90度后再上传到后台呢?
4 回复
文档: https://mp.weixin.qq.com/debug/wxadoc/dev/api/media-picture.html#wxgetimageinfoobject
wx.getImageInfo(OBJECT)
wx.chooseImage({
success: function (res) {
wx.getImageInfo({
src: res.tempFilePaths[0],
success: function (res) { console.log(res.width) console.log(res.height)
}
})
}
})
这些