提供个 代码片段啊,看手机能看出来个啥
HUAWEI P20打开PDF预览失败[图片][图片]
2021-05-26ocr 的bug
OCR插件 打开后没有拍照按钮?打开OCR只有一个框,没有拍照按钮,根本没法使用。 [图片]
2021-05-26用云开发注册一个小程序账号不就好了
小程序测试账号不支持云开发吗?小程序测试账号不支持云开发吗?
2021-05-26https://developers.weixin.qq.com/miniprogram/dev/component/canvas.html 不是有代码片段吗 https://developers.weixin.qq.com/miniprogram/dev/api/canvas/Canvas.html[图片]
如何将wx.createCanvasContext修改为新的接口https://developers.weixin.qq.com/miniprogram/dev/api/canvas/wx.createCanvasContext.html 不让使用这个接口 新接口的详细说明呢?
2021-05-26打开调试看是否有报错呢
wxml-to-canvas 线上环境没有反应?wxml-to-canvas 生成图片 图片长度1200,测试环境保存图片没问题,线上环境点击没反应
2021-05-26https://developers.weixin.qq.com/community/develop/article/doc/0000223f6ece586ad34b5f37f56413
wx.createSelectorQuery()里面boundingClientRect方法问题?我想做一个爆布流的布局,然后需要获取到图片的高度,但是boundingClientRect有时候因为界面图片还未加载到从而只获取到了没有图片的div元素的高度,怎么能够知道界面图片都渲染完
2021-05-26反正现在是不支持,具体什么时候咱也不知道
pc端小程序不支持canvas2D画笔啊?请问pc端小程序什么时候可以支持canvas2d画笔啊
2021-05-25不太明白你想要的实现什么效果
canvas画图 怎么清除掉自己画的不影响背景?onLoad: function () { var that=this // 通过 SelectorQuery 获取 Canvas 节点 const query=wx.createSelectorQuery() .select('#canvas') .fields({ node: true, size: true, }) .exec( res=>{ const canvas = res[0].node this.ctx = canvas.getContext('2d') // that.setData({ // ctx // }) const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = res[0].width * dpr canvas.height = res[0].height * dpr this.ctx.scale(dpr, dpr) this.render(canvas, this.ctx) } ) }, render(canvas, ctx) { let that = this; let img = canvas.createImage();//canvas 2d 通过此函数创建一个图片对象 img.onload = (e) => { console.log('img loaded') ctx.drawImage(img, 0, 0, 300, 300); // wx.canvasToTempFilePath({ // canvas, // success(res) { // console.log(res.tempFilePath) // that.setData({ // imgSrc:res.tempFilePath // }) // } // }, that) } img.onerror = (e) => { console.error('err:', e) } img.src = './car.png' }, touchStart:function(e){ /*画圆圈 this.ctx.arc(30,30,10,0,Math.PI*2,true) this.ctx.stroke() */ this.x1=e.touches[0].x this.y1=e.touches[0].y this.ctx.beginPath() }, touchMove:function(e){ //画点 var x2=e.touches[0].x var y2=e.touches[0].y this.ctx.arc(x2,y2,10,0,Math.PI*2,true) // this.ctx.lineTo(x2, y2) // this.ctx.lineWidth=5 // this.ctx.strokeStyle="red" this.ctx.stroke() this.x1=x2 this.y1=y2 /*画线 var x2=e.touches[0].x var y2=e.touches[0].y this.ctx.moveTo(this.x1,this.y1) this.ctx.lineTo(x2, y2) this.ctx.lineWidth=5 this.ctx.strokeStyle="red" this.ctx.stroke() this.x1=x2 this.y1=y2 */ }, touchEnd:function(e){
2021-05-25看一下微信发朋友圈的时候选择位置 看能不能获取到。
getLocation:fail permission denied 权限都开了,但是还是获取不到?华为 mate 20 小程序获取不到位置(如下图) 1.手机的gps开了 2.手机给微信获取地理位置的权限也开了 3.微信给小程序的获取地理位置的权限也开了 [图片] [图片][图片][图片] [图片]
2021-05-25购买就好了 https://developers.weixin.qq.com/miniprogram/dev/extended/service/ocr.html 按照提示引入就好了[图片]
微信小程序OCR需要申请吗?微信小程序OCR识别在哪里申请?
2021-05-25