- 微信小程序canvas IOS用 scale(-1,1) 将图片翻转无效
微信小程序 canvas scale() 我用 scale 方法把图片 水平翻转 ctx.scale(-1,1) 安卓是可以的,但是IOS无效 官方大大们 帮帮忙啊
2018-05-25 - 调用云函数生成小程序码不返回结果
云函数调用小程序生成api,function name:getNewQrCode const cloud = require('wx-server-sdk') cloud.init() exports.main = async (event, context) => { try { const result = await cloud.openapi.wxacode.getUnlimited({ scene: event.scene, page: event.path }) return result } catch (err) { return err } } ----------------------------------------------------------- 小程序端调用代码: wx.cloud.callFunction({ name: 'getNewQrCode', data: param }).then(res => { let data if (res.result.errCode == 0) { if (dataType == 'base64') { data = `data:image/jpeg;base64,${wx.arrayBufferToBase64(res.result.buffer)}` } if (dataType == 'buffer') { data = res.result.buffer } if (data) { resolve(data) } else { reject('unknow data type') } } else { reject(res.result.errMsg) } }).catch(err => { console.log('云端错误:', err) reject(err) }) ---------------------------------------------------- 大部分用户能返回正确结果,但是,一旦一个用户不能返回正确结果,那他的返回的结果,永远都是 (大概4/5的用户正确,1/5的用户永远不正确) Error: errCode: -404012 error while waiting for the result errMsg: cloud.callFunction:fail error while waiting for the result; at cloud.callFunction api; at new u (VM135 [publib]:1) at d (VM135 [publib]:1) at Object.t.returnAsFinalCloudSDKError (VM135 [publib]:1) at Function.<anonymous> (VM135 [publib]:1) at VM135 [publib]:1 at Timeout._onTimeout (VM135 [publib]:1) at listOnTimeout (internal/timers.js:535) at processTimers (internal/timers.js:479) 查看云函数日志: 2019-05-13T06:04:43.431Z 生成了二维码数据: { contentType: 'image/jpeg', buffer: <Buffer ff d8 ff e0 00 10 4a 46 49 46 00 01 01 00 00 01 00 01 00 00 ff db 00 43 00 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 01 ... >, errMsg: 'openapi.wxacode.getUnlimited:ok', errCode: 0 } 执行时间: 379.85ms内存使用: 2.38 MB 也就是说云端是执行成功的,也返回结果的 错误信息:fail error while waiting for the result 但是这个用户永远也等不到返回的结果,最后超时后抛错 是云开发平台的问题还是其他设置方面的问题呢? 不知道有没有遇到同样问题的?
2019-05-13 - canvas怎么设置字体font-family
canvas怎么设置字体font-family
2019-01-17 - canvas为什么不支持修改字体呢?
我们的小程序是使用canvas制作图文卡片,但是字体需要有多元化的。 -目前在开发工具里,画布可以显示不同的字体,但到了真机上就不行,安卓和苹果手机都不可以。 希望官方重视和解决这个问题,谢谢~
2018-08-01 - 目前微信小程序支持canvas中设置字体吗?
我用ctx.font在开发工具上设置了字体是好着的。但是到了实体机子上就没有用了。我想问下canvas能不能设置字体?
2019-12-26