红色变紫色,用白平衡算法就可以恢复真实颜色
camera组件安卓机拍照失真安卓机使用camera组件的takePhoto方法拍照,红色都变成蓝色了,而IOS没有这个问题。请问是什么回事呢? 普通照相功能拍出来的效果: [图片] camera组件拍出来的效果: [图片]
2020-03-11同问,请问解决了吗?如何去掉蓝色透明的遮盖
使用camera拍照的时候,为什么拍出来的照片会有一层像蓝色的滤镜,求指教data: { imgPath:'', operate:'拍照' }, takephoto: function () { var that = this if (wx.createCameraContext()) { const ctx = wx.createCameraContext("myCamera") ctx.takePhoto({ quality: 'normal', success: function (res) { that.setData({ imgPath: res.tempImagePath, }) } }) } else { wx.showModal({ title: '提示', content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。' }) } }, error:function(e) { console.log(e.detail) }, <view> <camera id="myCamera" device-position="front" flash="auto" binderror="error" class='camera'></camera> <image src="{{imgPath}}" class="img"></image> </view> [图片]
2020-03-11