Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to draw Bezier Curve by HTML5 Canvas

2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article is about how HTML5 Canvas draws Bezier curves. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Bezier curve: it can be in the form of quadratic and cubic power and is generally used to draw complex and regular shapes.

Methods:

QuadraticCurveTo (cp1x, cp1y, x, y)

BezierCurveTo (cp1x, cp1y, cp2x, cp2y, x, y)

The parameters x and y are the end point coordinates, cp1x and cp1y are the coordinates of the first control point, and cp2x and cp2y are the second.

Drawing chat Bubble with Bezier Curve

Description

Drawing chat Bubble with Bezier Curve

Code

Function draw () {

Var canvas = document.getElementById ("cv")

If (canvas.getContext) {

Var ctx = canvas.getContext ("2d")

Ctx.moveTo (75, 25)

Ctx.quadraticCurveTo (25pr 25pr 25pr 62.5)

Ctx.quadraticCurveTo (25pr 100pl 50100)

Ctx.quadraticCurveTo (50, 120, 30, 125)

Ctx.quadraticCurveTo (60, 120, 65, 100)

Ctx.quadraticCurveTo (125pr 100pr 125pr 62.5)

Ctx.quadraticCurveTo (125, 25, 75, 25)

Ctx.stroke ()

}

}

Drawing chat Bubble with Bezier Curve

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 211

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report