- takePhoto 自动对焦和获取原图而不是压缩图
- 当前 Bug 的表现(可附上截图) takePhoto 自动对焦和获取原图而不是压缩图 - 预期表现 takePhoto 自动对焦和获取原图而不是压缩图 - 复现路径 - 提供一个最简复现 Demo ctx.takePhoto({ quality: quality, success: (res) => { !!successfunc && successfunc(res) }, fail: (res) => { app.noneToast('拍照失败,请重试'); that.setData({ camera: false }); }, complete: (res) => { setTimeout(function () { wx.hideLoading() }, 10000); } })
2019-04-28 - 小程序wx.chooseImage拍照drawImage 微信闪退
- 当前 Bug 的表现(可附上截图) 小程序wx.chooseImage拍照,drawImage绘图 微信闪退 - 预期表现 可以正常绘图到页面 - 复现路径 - 提供一个最简复现 Demo chooseImage: function (successfunc) { let that = this; // 'original', wx.chooseImage({ count: 1, sizeType: ['original'], sourceType: ['camera'], success(res) { !!successfunc && successfunc(res) } }) }, that.canvas = wx.createCanvasContext('image-canvas', that) that.canvas.drawImage(tempImagePath, 0, 0, width, canvasHeight) that.canvas.draw()
2019-04-28