您的位置:58编程 > 微信小程序API 绘setLineCap(设置线条端点样式)

微信小程序API 绘setLineCap(设置线条端点样式)

2023-05-03 10:33

 微信小程序API 绘setLineCap(设置线条端点样式)

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


canvasContext.setLineCap


定义

设置线条的端点样式。

参数

参数类型范围说明
lineCapString"butt"、"round"、"square"线条的结束端点样式

示例代码:

const ctx = wx.createCanvasContext("myCanvas")
ctx.beginPath()
ctx.moveTo(10, 10)
ctx.lineTo(150, 10)
ctx.stroke()

ctx.beginPath()
ctx.setLineCap("butt")
ctx.setLineWidth(10)
ctx.moveTo(10, 30)
ctx.lineTo(150, 30)
ctx.stroke()

ctx.beginPath()
ctx.setLineCap("round")
ctx.setLineWidth(10)
ctx.moveTo(10, 50)
ctx.lineTo(150, 50)
ctx.stroke()

ctx.beginPath()
ctx.setLineCap("square")
ctx.setLineWidth(10)
ctx.moveTo(10, 70)
ctx.lineTo(150, 70)
ctx.stroke()

ctx.draw()


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

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