最新版ios版本微信6.6.7 小程序canvas不支持clip方法
最新版ios版本微信6.6.7 小程序canvas不支持clip方法, 比如需要吧图片绘制到指定矩形区域或圆形,如下代码无效果。 ctx.save(); ctx.beginPath(); if (border) { // ctx.beginPath(); ctx.arc( centerX, centerY, _self.px2rem(radius), 0, 2 * Math.PI); }else{ ctx.rect(left, top, width, height); } ctx.clip(); ctx.drawImage( img.path, left, top, parseInt(width), parseInt(dstHeight)); ctx.restore();