Grid drawn using a <canvas> element looking stretched

自古美人都是妖i 提交于 2019-12-18 12:15:38

问题


I'm trying to draw a grid on a <canvas> element with the ultimate goal of making a Go board.

For some reason the grid is looking stretched, with the lines being thicker than 1 pixel and the spacing being completely wrong. It doesn't even start in the (10,10) position..

It would be great if someone could take a look at tell me what I'm doing wrong.

http://jsfiddle.net/h2yJn/


回答1:


I've found the problem. I was setting the dimensions of the <canvas> using CSS, when you actually have to set the width and height attributes. This was causing it to be stretched/skewed.

var canvas = $('<canvas/>').attr({width: cw, height: ch}).appendTo('body');

http://jsfiddle.net/h2yJn/66/




回答2:


Please try it outside jsfiddle, maybe jsfiddle is applying some linear transformation.

Also please make sure that you add 0.5 everywhere to both x and y coordinates. Alternatively, you can apply translate(0.5, 0.5) to shift all coordinates by half a pixel.



来源:https://stackoverflow.com/questions/4172246/grid-drawn-using-a-canvas-element-looking-stretched

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!