图中两个圆图怎么花出来,我只会画一个,使用clip,但这样另外一个怎么画
微信小程序开发问题解答
微信小程序开发者回答: ctx.fill(); //主要是这句起作用
ctx.beginPath();
ctx.arc(97 + 44, 78 + 44, 44, 0, 2 * Math.PI);
ctx.clip();
ctx.drawImage(result[1].tempFilePath, 97, 78, 88, 88);
ctx.restore();
ctx.beginPath();
ctx.arc(378, 1135, 73, 0, 2 * Math.PI);
ctx.clip();
ctx.drawImage(result[2].tempFilePath, 305, 1062, 146, 146);
本文网址:http://www.91bianli.com/weixinxiaochengxu/41736.html