您的位置:58编程 > 微信小程序绘插件 微信小程序API 绘stroke(对当前路径进行描边)

微信小程序绘插件 微信小程序API 绘stroke(对当前路径进行描边)

2023-04-04 00:33

微信小程序绘插件 微信小程序API 绘stroke(对当前路径进行描边)

微信小程序绘插件 微信小程序API 绘stroke(对当前路径进行描边)

微信小程序绘插件

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

canvasContext.stroke


定义

画出当前路径的边框。默认颜色色为黑色。

Tip:stroke()描绘的的路径是从beginPath()开始计算,但是不会将strokeRect()包含进去,详情见例二。

例子

const ctx = wx.createCanvasContext("myCanvas")
ctx.moveTo(10, 10)
ctx.lineTo(100, 10)
ctx.lineTo(100, 100)
ctx.stroke()
ctx.draw()


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

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

// only stoke this rect, not in current path
ctx.setStrokeStyle("blue")
ctx.strokeRect(10, 70, 100, 30)

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

// it will stroke current path
ctx.setStrokeStyle("red")
ctx.stroke()
ctx.draw()


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

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