问题:使用wx.chooseImage,拍照上传图片在预览时 ,图片自动翻转90°。
设备:小米6
版本号:Android7.1.1
demo:
index.wxml:
<button catchtap=“fileImg”>获取图片</button>
<image style=“height:200rpx; width:200rpx;” src="{{tempFilePaths}}" mode=“aspectFit”></image>
index.js:
var app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
tempFilePaths:’’
},
fileImg: function(){
var _this = this;
wx.chooseImage({
count:1,
sizeType: [‘compressed’],
success: function(res) {
console.log(res.tempFiles);
_this.setData({
tempFilePaths : res.tempFilePaths
})
},
})
}
})