canvas 绘制二次贝塞尔曲线

Posted 1点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了canvas 绘制二次贝塞尔曲线相关的知识,希望对你有一定的参考价值。

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>canvas</title>
    <script>
        function init() {

            var canvas=document.getElementById(\'canvas\');
            var ctx=canvas.getContext(\'2d\');
            ctx.strokeStyle="dark";
            ctx.beginPath();
            ctx.moveTo(0,200);
            ctx.quadraticCurveTo(75,50,300,200);
            ctx.stroke();
            ctx.globalCompositeOperation="source-over";


            ctx.strokeStyle="blue";
            ctx.beginPath();
            ctx.moveTo(75,50);
            ctx.lineTo(0,200);
            ctx.moveTo(75,50);
            ctx.lineTo(300,200);
            ctx.stroke();

        }

    </script>
</head>
<body  onload="init();">
<canvas  id="canvas"  width="400"   height="400"></canvas>
</body>
</html>

  效果:

 

 

2017-09-09   11:30:18 

以上是关于canvas 绘制二次贝塞尔曲线的主要内容,如果未能解决你的问题,请参考以下文章

canvas 绘制三次贝塞尔曲线

JavaScript+canvas 利用贝塞尔曲线绘制曲线

canvas绘制曲线

二次贝塞尔曲线:计算点

从阅读仿真页看贝塞尔曲线

GLSL片段着色器 - 绘制简单的粗曲线