首页 > 其他 > 详细

canvas 画 圆角矩形

时间:2021-04-14 15:48:05      阅读:14      评论:0      收藏:0      [点我收藏+]
圆角矩形
drawRoundedRect(ctx, x, y, width, height, radius, type) {
           
            ctx.moveTo(x, y + radius);
            ctx.beginPath();
            ctx.arc(x + radius, y + radius, radius, Math.PI, 1.5 * Math.PI);
            ctx.arc(x + width - radius, y + radius, radius, 1.5 * Math.PI, 2 * Math.PI);
            ctx.arc(x + width - radius, y + height - radius, radius, 0, 0.5 * Math.PI);
            ctx.arc(x + radius, y + height - radius, radius, 0.5 * Math.PI, Math.PI);
            ctx.closePath();
            const method = type || ‘stroke‘; // 默认描边,传入fill即可填充矩形
            ctx[method]();
        },

canvas 画 圆角矩形

原文:https://www.cnblogs.com/Running00/p/14657245.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!