lilishop-uniapp/js_sdk/u-draw-poster/extends/draw-function/stroke-round-rect.js

8 lines
197 B
JavaScript
Raw Normal View History

2021-05-13 11:03:32 +08:00
/** 绘制填充圆角矩形方法 */
export default {
name: 'strokeRoundRect',
handle: (canvas, ctx, x, y, w, h, r) => {
ctx.roundRect(x, y, w, h, r, false, true);
}
};