你好,不知道你那个问题解决了吗,用的也是小米的手机上传拍照的照片会自动旋转,图片不会,其他手机也不会
手机拍照上传图片被旋转90度问题:使用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 }) }, }) } })
2019-12-25