问题类型: BUG
问题描述:微信小程序拍照部分Android机出现蓝色精灵人现象,具体为OPPO R9S系统版本为Android6.0.1,华为P9 系统版本问题Android7.0,小米Note3 系统版本问题Android7.1.1,微信版本均为6.6.3.均出现拍照后反色(蓝色现象),Demo代码和图片请见如下,对比Iphone和一加5T手机,系统版本为Android7.1.1,微信版本为6.6.3,无此问题。请各位和官方帮忙处理一下,谢谢。
doTakePhoto: function () {
var that = this;
var ctx = wx.createCameraContext(this)
ctx.takePhoto({
quality: ‘high’,
success: function (res) {
console.log(res.tempImagePath);
// that.setData({ photoShow: true });
that.setData({ photoCoverImageStyle: “width: 100%; height: 100%” });
that.setData({
facePhoto: res.tempImagePath
});
that.setData({ faceRecordOKCoverImageStyle: “width: 100rpx; height: 100rpx” });
that.setData({ faceRecordingTip: “人脸录入成功” });
that.setData({ faceSettingShow: true });
that.setData({ faceFunctionSuccessShow: false });
}
})
},