HTML5画布行程没有抗锯齿(HTML5 Canvas stroke not anti-aliase

2019-09-21 19:38发布

我只是试图让在画布上厚厚的抗锯齿笔画的圆圈。

圆被画成预期,但中风的边缘非常锯齿。 我一直在读取Chrome会强制抗锯齿,所以不知道该怎么办...

小提琴: http://jsfiddle.net/nipponese/hWsxw/

HTML

<div id="main">
    <canvas id="myCanvas" width="400" height="400" style="border: 1px solid #000"></canvas>
        <div id="counter" style="height: 100px; width: 100px; border: 1px solid #000">
     </div>
</div>

该JS + jQuery的

<script>
    function calc(myVal) {
        var canvas = document.getElementById("myCanvas");
        var ctx = canvas.getContext("2d");
        var radius = 70;

        ctx.beginPath();
        ctx.arc(140, 140, 20, myVal * Math.PI, 0, true);
        ctx.lineWidth = 14;
        ctx.stroke();
    };
    $(document).ready(function() {
        var count = 0;
        var parsedCount;
        function go(){  
            if (count <= 200) {
                parsedCount = count*.01
                $('#counter').html('<p>' + parsedCount + '</p>');
                calc(parsedCount);
                count++;
            }
        }
        setInterval(go, 10)
    });
</script>

Answer 1:

我的同事刚指出,我需要使用clearRect每次抽签后清除画布。 在招人只是被画在彼此的顶部。

function calc(myVal) {
    var canvas = document.getElementById("myCanvas");
    var ctx = canvas.getContext("2d");
    var radius = 70;
    ctx.clearRect(0, 0, canvas.width, canvas.height);

    ctx.beginPath();
    ctx.arc(140, 140, 20, myVal * Math.PI, 0, true);
    ctx.lineWidth = 14;
    ctx.stroke();
};


文章来源: HTML5 Canvas stroke not anti-aliased