WeChat 애플릿 API 그리기 BeginPath(경로 시작)
beginPath
Definition
경로 만들기를 시작하여 경로를 칠 또는 획에 사용하려면 채우기 또는 획을 호출해야 합니다.
Tip: 처음에는 beginPath()
를 한 번 호출하는 것과 같습니다. beginPath()
。
Tip: 同一个路径内的多次setFillStyle()
、setStrokeStyle()
、setLineWidth()
Tip
: 동일한 경로에setFillStyle()
, setStrokeStyle()
, setLineWidth()
및 기타 설정이 여러 개 있으면 The로 끝납니다. 설정이 최종입니다. 예
const ctx = wx.createCanvasContext('myCanvas')// begin pathctx.rect(10, 10, 100, 30) ctx.setFillStyle('yellow') ctx.fill()// begin another pathctx.beginPath() ctx.rect(10, 40, 100, 30)// only fill this rect, not in current pathctx.setFillStyle('blue') ctx.fillRect(10, 70, 100, 30) ctx.rect(10, 100, 100, 30)// it will fill current pathctx.setFillStyle('red') ctx.fill() ctx.draw()🎜🎜🎜