画布弧太像素化了

Ajo*_*uve 7 html5 geometry canvas

我尝试在画布上绘制一个圆圈,之前我曾经这样做过,但这次我发现它非常像素化

var game;

function game (){

    this.canvas = document.getElementById('canvas');

    this.ctx = this.canvas.getContext('2d');



    this.initCanvas = function(){

    }

    this.draw1 = function(){
        this.ctx.beginPath();
        this.ctx.arc(50, 75, 10, 0, Math.PI*2, true); 
        this.ctx.closePath();
        this.ctx.fill();
    }

    this.draw2 = function(){
        this.ctx.beginPath();
        this.ctx.arc(100,75,10,0,Math.PI*2,true);
        this.ctx.closePath();
        this.ctx.stroke();
    }

    this.run = function(){
        this.initCanvas();
        this.draw1();
        this.draw2();
    }

    window.onresize = function() {
        this.canvas.width = window.innerWidth;
        this.canvas.height = window.innerHeight;
    };
}

game = new game();
Run Code Online (Sandbox Code Playgroud)

http://jsfiddle.net/RG6dn/6/

我不知道这是否是由于浏览器(我在chrome和firefox上有相同的东西)或我的电脑

谢谢

Ada*_*ley 16

您可能正在使用CSS设置画布的宽度.在CSS中更改canvas元素的宽度会拉伸画布中的像素

例如.

<canvas style='width:400px;height:400px'></canvas>

相反,您需要使用canvas元素本身的width和height属性来定义画布包含的像素数.

正确的方式:

<canvas width='400px' height='400px'><canvas>

  • 由于画布是按像素绘制的,因此您需要定义画布本身内的像素数。CSS仅以像素为单位指示宽度/高度,而不是画布中实际的像素数 (2认同)