还没有解决
自定义组件中canvas的canvasGetImageData获取不到数据小程序代码: wx.canvasGetImageData({ canvasId: 'PaperCanvas', x: 0, y: 0, width: 100, height: 100, success:function(res) { console.log(res.width) // 100 console.log(res.height) // 100 console.log(res.data instanceof Uint8ClampedArray) // true console.log(res.data.length) // 100 * 100 * 4 let pngData = upng.encode([res.data.buffer], res.width, res.height) let base64 = wx.arrayBufferToBase64(pngData) }, fail: function (res) { console.log(res); return '' } }, this) 运行后报错: errMsg:"canvasGetImageData: fail canvas is empty" 请帮忙解答,多谢各位!
2019-08-27这个问题解决了吗?有啥比较好的解决方法,谢谢
文字垂直居中在Android机型表现不一致[图片] 类似图片文字,在模拟器中设置文字垂直居中,垂直效果能实现。在ios机型上也是有效果的,但是在安卓系统的手机上,垂直居中效果未能实现,不同安卓手机会出现偏上或者偏下效果。求指点该如何设置样式,确保能适配不同的安卓机型?
2019-08-27