欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解如何用canvas画一个微笑的表情

程序员文章站 2023-12-13 19:15:28
这篇文章主要介绍了详解如何用canvas画一个微笑的表情的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 19-03-14...

实习期间让我用canvas画一个表情,比较简单,话不多说直接上代码:

<body>

<div id="canvas-warp">
    <canvas id="canvas" style="display: block; margin: 200px auto;">
        你的浏览器居然不支持canvas!
    </canvas>
</div>
<script>
    window.onload = function () {
        var canvas = document.getelementbyid("canvas");
        canvas.width = 400;
        canvas.height = 400;
        //获取上下文
        var context = canvas.getcontext("2d");
        //用于画有填充色圆的函数  参数分别为圆心坐标 ,半径,起始与终止位置,线颜色,填充颜色
        function drawcircle(x2, y2, r2, a2, b2, linecolor, fillcolor) {
            context.beginpath();
            context.arc(x2, y2, r2, a2, b2 * math.pi);
            context.strokestyle = linecolor;
            context.fillstyle = fillcolor;
            context.fill(); //确认填充
            context.stroke();
        };
        //用于画圆弧函数 默认线条为黑色 无填充 参数分别为:圆心x坐标,圆心y坐标,半径,开始位置,终止位置
        function drawsarc(x, y, r, l1, l2) {
            context.beginpath();
            context.arc(x, y, r, l1 * math.pi, l2 * math.pi);
            context.strokestyle = "black";
            context.stroke();
        };
        //用于画眼睛的函数
        function darweyes(x1, y1, a1, b1) { //参数分别为椭圆圆心位置 长轴  短轴
            context.strokestyle = "#754924"
            paramellipse(context, x1, y1, a1, b1); //椭圆
            function paramellipse(context, x, y, a, b) {
                //使每次循环所绘制的路径(弧线)接近1像素
                var step = (a > b) ? 1 / a : 1 / b;
                context.beginpath();
                context.moveto(x + a, y); //从椭圆的左端点开始绘制
                for (var i = 0; i < 2 * math.pi; i += step) {
                    //参数为i,表示度数(弧度)
                    context.lineto(x + a * math.cos(i), y + b * math.sin(i));
                }
                context.closepath();
                context.fillstyle = "#754924";
                context.fill(); 
                context.stroke();
            };
        };
        //脸
        drawcircle(200, 200, 200, 0, 2, "#eee685", "#fcf200");
        //左眼
        context.strokestyle = "#754924"
        darweyes(116, 130, 18, 25);
        drawcircle(110, 127, 12, 0, 2, "#754924", "#f5f5f5");
        //右眼
        darweyes(296, 130, 18, 25);
        drawcircle(290, 127, 12, 0, 2, "#754924", "#f5f5f5");
        //左眉毛
        drawsarc(100, 100, 50, 1.3, 1.7);
        //右眉毛
        drawsarc(300, 100, 50, 1.3, 1.7);
        //嘴巴
        drawsarc(200, 120, 180, 0.3, 0.7);
    }
</script>
</body>

效果图

详解如何用canvas画一个微笑的表情

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: