求帮忙,多谢了。
cameraContext.onCameraFrame((frame) =>{获取像素问题}?尊敬的微信团队,求教一个问题,新手,实在搞不懂。 cameraContext.onCameraFrame((frame) => { let uint8Array=new Uint8ClampedArray(frame.data); for(var h=0;h<height;h++) { for(var w=0;w<width;w++) { var pixelIndex=((h*width)+w)*4;//rgba; var pixelRed=uint8Array[pixelIndex]; var pixelGreen=uint8Array[pixelIndex+1]; var pixelBlue=uint8Array[pixelIndex+2]; } } } 问题: 上代码获取pixelRed和pixelGreen和pixelBlue都为零?想获取pixelBlue的值0~255,如何实现,谢谢了。 麻烦回复,恳教大家帮帮忙,就是要从frame.data获取每个像素点的r g b值。麻烦了。
2021-04-22解决了吗?
怎样在小程序前端使用 nodejs 的 crypto 模块?在 node.js 下试着使用 crypto 模块,发现直接 require,不用安装(执行安装命令 npm install crypto 后产生的文件中显示该模块已内置)。问题是开发工具下不能直接 require(执行结果显示找不到此模块)。这时怎样安装 crypto 模块呢? 版本:开发工具:1.03.2009140;开发工具的node.exe:12.6.0.0;node.js:12.19.0.0。
2021-03-15确认回调时马上就回复 <xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml> 结果还是执行十多次,晕?到底哪里问题?
支付回调:有返回成功信息,还是多次回调?支付成功后,回调时,回复了下面信息: <xml><return_code><![CDATA[SUCCESS]]></return_code><return_msg><![CDATA[OK]]></return_msg></xml> 还是执行十次以上回调,如何处理,谢谢!
2021-02-28月亮 你好,不用type="2d",你是怎么画图的,谢谢。旧的好像弃用了啊。麻烦贴下代码,多谢,感激。
<canvas type="2d" id="canva"/> .exec((res) =>执行错误?尊敬的微信团队: <canvas type="2d" id="canvas'"/> const query = wx.createSelectorQuery() query.select('#canvas').fields({ node: true, size: true }) .exec((res) => {} 执行这一句老是提示:TypeError: Cannot read property 'createView' of undefined错误,如果去除type="2d"就不会错误,但是获取不到node,node==null; }); 求人,谢谢。
2021-02-23为什么 type="2d" 后.exec((res) =>老是提示下面错误: TypeError: Cannot read property 'createView' of undefined
canvas的drawImage的问题,ctx使用canvas.getContext就报错?第一种情况 //wxml //js const query = wx.createSelectorQuery() query.select('#mask') .fields({ node: true, size: true }) .exec((res) => { const canvas = res[0].node const ctx = canvas.getContext('2d') wx.getImageInfo({ src: 'xxx',//合法域名 success (res) { //单独执行这两句报错 ctx.drawImage(res.path,0,0) ctx.draw() //单独执行这三句正常 ctx.setFillStyle('#50d2a6') ctx.fillRect(0,0,100,100) ctx.draw() } }) }) 报错信息 Failed to execute drawImage on CanvasRenderingContext2D: The provided value is not of type (CSSImageValue or HT MLImageElement or SVGImageElement or HTMLVideoElement or HTMLCanvasElement or ImageBitmap or OffscreenCanvas) 第二种情况 //wxml //js const ctx = wx.createCanvasContext('mask', this) wx.getImageInfo({ src: 'xxx',//合法域名 success (res) { //这单独执行两句不显示 ctx.drawImage(res.path,0,0) ctx.draw() //单独执行这三句也不显示 ctx.setFillStyle('#50d2a6') ctx.fillRect(0,0,100,100) ctx.draw() } }) 另外drawImage()参数我dx,dy,dw,dh都传了试过,结果一样
2021-02-23回复:青寒 我就是看晕了,一个个按他们说的改都不行啊,才这里问题啊。麻烦了。我的代码。
canvasToTempFilePath第二参数无论怎么整都是fail canvas is emp?下面代码,无论that放哪里,怎么整都提示:fcanvasToTempFilePath: fail canvas is empty,真是无语,麻烦求解,谢谢。 onReady: function () { var that = this; var context = wx.createCanvasContext('mycanvas',that); wx.chooseImage ({ success: function (res) { context.drawImage(res.tempFilePaths[0], 0, 0, 150, 100); context.fillStyle = "#FF0000"; context.fillRect(0, 0, 50, 50); context.draw(true, setTimeout(function() { wx.canvasToTempFilePath ({ destWidth: 150, destHeight: 100, canvasId: 'mycanvas', success: function (res) { console.log('1212' + res.tempFilePath); }, fail: function (res) {console.log(res);} },that); },300)); } }); }
2021-01-04[图片] 前面点击后如图,这样不是断点啊?下行再点击,上行又不见了。
Stable 1.03.2011120版本在代码前面数字点击,不会出现断点背景。求问?谢谢。Stable 1.03.2011120版本在代码前面数字点击,不会出现断点背景。求问。谢谢。
2020-12-22