- 系统调用 wx.openDocument 打开文件有时候没有反应?
系统调用 wx.openDocument 打开 文件(excel/pdf等) ,已经进入success回调,但是部分机型没有反应 (包括ios和部分安卓手机)。 [图片]
2020-11-05 - 用canvas2d绘制海报,在ios上绘制的海报有时候出现跟设置的宽度不一样?
用canvas2d绘制海报,通过如下方式设置canvas宽度。 wxml如下: <view class='poste_box' id='canvas-container'> <canvas type="2d" id="canvas" style="width:100%; height: {{canvasH}}px;" /> </view> wxss如下: .poste_box { width: 90%; margin: auto; position: relative; top: 50rpx; background-color: #fff; border: 1rpx solid #ddd; box-shadow: 0px 0px 10px 5px #d8d7dd; border-radius: 20rpx; overflow: hidden; } js如下: wx.createSelectorQuery() .select("#canvas") .fields({ node: true, size: true, rect: true, }) .exec( ((res) => { const width = res[0].width; var height = res[0].height; const canvas = res[0].node; canvas = canvas; const ctx = canvas.getContext("2d"); // 开始绘制 const dpr = wx.getSystemInfoSync().pixelRatio; canvas.width = width * dpr; canvas.height = height * dpr; ctx.scale(dpr, dpr); // ... }).bind(this)) 在开发者工作或者安卓表现正常,如下 [图片] 在iphone7(ios13.5)上,微信版本号:7.0.14。有时候会如下如下的情况 [图片]
2020-07-22 - canvas 2d 的font设置bold 在ios上不生效?
在用canvas2d绘制文字时,用font设置字体为粗斜体。在开发者工具和安卓上可以正常显示,在iphone7(ios13.5)上没有生效。 Api: const ctx = canvas.getContext("2d"); ctx.font = "italic bold 18px PingFangSC-Regular"; 微信版本号: 7.0.14 使用废弃的api,用font设置字体为粗斜体。在开发者工具、安卓、iphone7(ios13.5)上都可以正常显示。 const ctx = wx.createCanvasContext("myCanvas"); ctx.font = "italic bold 18px PingFangSC-Regular";
2020-07-22