微信小程序API繪圖fill,對當(dāng)前路徑中的內(nèi)容進(jìn)行填充
2017-12-22
導(dǎo)讀:繪圖接口和方法 canvasContext.fill 定義 對當(dāng)前路徑中的內(nèi)容進(jìn)行填充。默認(rèn)的填充色為黑色。 Tip : 如果當(dāng)前路徑?jīng)]有閉合, fill() 方法會將起點(diǎn)和終點(diǎn)進(jìn)行連接,然后填充,詳情見例一。...
canvasContext.fill
定義
對當(dāng)前路徑中的內(nèi)容進(jìn)行填充。默認(rèn)的填充色為黑色。
Tip: 如果當(dāng)前路徑?jīng)]有閉合,fill()
方法會將起點(diǎn)和終點(diǎn)進(jìn)行連接,然后填充,詳情見例一。
Tip:fill()
填充的的路徑是從beginPath()
開始計(jì)算,但是不會將fillRect()
包含進(jìn)去,詳情見例二。
例子
const ctx = wx.createCanvasContext('myCanvas')
ctx.moveTo(10, 10)
ctx.lineTo(100, 10)
ctx.lineTo(100, 100)
ctx.fill()
ctx.draw()
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()
更多微信小程序開發(fā)教程,可以關(guān)注hi小程序。
第二部分:如何開通一個(gè)小商店