- 小程序的蓝牙打印有没有打印图片或者二维码的模板样例?
文字可以打印了,如何打印二维码?或者图片?
2023-09-25 - 小程序打印图片,打印机打印出来是乱码 怎么办?求大佬解答,全网没有教程
wx.createSelectorQuery() .select('#secondCanvas') .fields({ node: true, size: true }) .exec( (res) => { console.log('1111111111111111111') console.log(res) // Canvas 对象 const canvas = res[0].node // Canvas 画布的实际绘制宽高 const renderWidth = res[0].width const renderHeight = res[0].height // Canvas 绘制上下文 const ctx = canvas.getContext('2d') // 初始化画布大小 const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = renderWidth * dpr canvas.height = renderHeight * dpr ctx.scale(dpr, dpr) // 若干绘制调用 // 这里绘制完成 console.log('draw done') const img = canvas.createImage() img.onload = () => { ctx.drawImage( img,0,0) } img.src='https://open.weixin.qq.com/zh_CN/htmledition/res/assets/res-design-download/icon64_wx_logo.png' wx.downloadFile({ url: 'https://open.weixin.qq.com/zh_CN/htmledition/res/assets/res-design-download/icon64_wx_logo.png', success: function(res) { // 下载成功后将文件转为临时路径 if (res.statusCode === 200) { wx.setStorageSync('tempFilePath', res.tempFilePath); } } }); this.setData({ img: wx.getStorageSync('tempFilePath'), canvasHeight: canvas.height, canvasWidth: canvas.width, }); const { canvasWidth, canvasHeight, deviceId, threshold } = this.data; const pix =res[0].node; const opt = { deviceId, ...this.character, onProgress: (percentage) => { console.log('percentage', percentage); this.setData({ percentage, }); }, lasterSuccess: () => { console.log('laster success'); this.setData({ printing: false, percentage: 0, }); wx.showModal({ title: '提示', content: '数据已发送完,请检查打印的内容是否正常', showCancel: false, confirmText: '好的', }); }, }; this.setData({ printing: true, }); console.log(threshold[0]) console.log(pix) console.log(opt) //打印图片 printImage( opt, overwriteImageData({ threshold: threshold[0], imageData: pix, width: canvasWidth, height: canvasHeight, }), ); }
2023-09-21 - 蓝牙打印机 用官网的demo连接成功,无法打印?型号HM-A300
纯官网demo 已经找到write:true的uuid 传入wx.writeBLECharacteristicValue,打印机没反应
2023-09-04 - scancode多个修改同一个数组不同参数异常?
[图片] 每个窗口放了一个scan 调用wx.scancode的时候,同一个input 扫描两次,或者不同的input 扫描填充 都会把之前的数据初始化。 这里是可以输入可以扫的。如果只是onchange输入的值,是不会初始化。但是onchange修改后,在用sancode也是被初始成了原数组。
2023-05-11 - ocr一图多发票识别问题?
请教下各位大佬,微信的ocr识别支持一张图片中 多张发票的识别吗
2023-03-22 - 小程序上传图片如何获取本机照片的拍照时间?
现在有个需求,希望上传手机中图片的时候 可以获取到图片当时拍照的事件。。请问各位大佬如何实现?感恩的心
2022-06-24 - 请问小程序有报表的插件么?
请问小程序有报表的插件吗,柱状图之类的
2022-03-04 - 如何获取系统本地储存的文件?
请问各位大神 新手只看到了wx.chooseMessageFile(Object object)的方法,从会话中选择文件请问用什么方法可以从手机系统中选择文件? 感谢
2021-10-13 - wx:if 可以判断index是否在数组中吗?
一个button标签 功能是添加到列表 点击后想把文案从‘添加到类表’ 变为 ‘已添加’, 想法是循环的对象,点击按钮后,记录下index,放入selected数组中, 请问wx:if 可以判断index是否在selected中吗?
2021-06-23 - 图片加载报错Failed to load local image resource 怎么办?
imageUrl从服务端获取 [图片] 进入页面后调试器报错 [图片] 页面上图片是可以渲染出来的 [图片] 点击图片的时候,iamgeUrl也没有传递进去 [图片] 求教大神!~
2021-06-21