获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我是华为手机,使用微信小程序官方示例拍照就已经是左右相反的: [图片][图片],[图片]
wx.chooseImage用前置摄像头拍出的照片左右相反,怎么处理?wx.chooseImage({ count: 1, sizeType: ['original', 'compressed'], sourceType: ['camera'], success (res) { console.log(res) // tempFilePath可以作为img标签的src属性显示图片 const tempFilePath = res.tempFilePaths[0] that.setData({ visitorFaceImage: tempFilePath, }) } }) 理论上拍出的照片应该和照镜子一样,但实际上却左右相反,照片不仅要在前端回显,还需上传给服务器,所以仅仅是在小程序回显处旋转没办法解决根本问题,这种情况怎么办?
2020-08-18