美文网首页
canvas画圆形图片

canvas画圆形图片

作者: 如雨随行2020 | 来源:发表于2021-12-29 01:47 被阅读0次
function fillMyRect(ctx, x, y, w, h, r) {
  const rightRadio = h / 2;
  const angle = Math.asin(rightRadio / r);
  ctx.save();
  ctx.beginPath();
  ctx.moveTo(x + r * Math.cos(angle), y);
  ctx.lineTo(x + w, y);
  ctx.arc(x + w, y + rightRadio, rightRadio, -0.5 * Math.PI, 0.5 * Math.PI);
  ctx.lineTo(x + r * Math.cos(angle), y + h);
  ctx.arc(x, y + rightRadio, r, angle, -angle, true);
  ctx.setFillStyle("rgb(255, 253, 208)");
  ctx.fill();
  ctx.restore();
}

相关文章

网友评论

      本文标题:canvas画圆形图片

      本文链接:https://www.haomeiwen.com/subject/tuyraltx.html