您的位置:58脚本 > 微信小程序API 绘beginPath(开始一个路径)

微信小程序API 绘beginPath(开始一个路径)

2023-05-11 08:32

 微信小程序API 绘beginPath(开始一个路径)

微信小程序 canvas接口和方法绘图接口和方法

canvasContext.beginPath


定义

开始创建一个路径,需要调用fill或者stroke才会使用路径进行填充或描边。

Tip: 在最开始的时候相当于调用了一次beginPath()

Tip: 同一个路径内的多次setFillStyle()setStrokeStyle()setLineWidth()等设置,以最后一次设置为准。

例子

const ctx = wx.createCanvasContext("myCanvas")
// begin path
ctx.rect(10, 10, 100, 30)
ctx.setFillStyle("yellow")
ctx.fill()

// begin another path
ctx.beginPath()
ctx.rect(10, 40, 100, 30)

// only fill this rect, not in current path
ctx.setFillStyle("blue")
ctx.fillRect(10, 70, 100, 30)

ctx.rect(10, 100, 100, 30)

// it will fill current path
ctx.setFillStyle("red")
ctx.fill()
ctx.draw()


微信小程序 canvas接口和方法绘图接口和方法

阅读全文
以上是58脚本为你收集整理的 微信小程序API 绘beginPath(开始一个路径)全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 58脚本 58jiaoben.com 版权所有 联系我们
桂ICP备12005667号-28 Powered by CMS