(对不起我的英语不好)
所以我的问题是,我怎样才能使0px线?
如果我这样称呼,那行会保持1px的宽度:/
imgCtx.beginPath();
imgCtx.lineWidth = 0;
imgCtx.fill();
imgCtx.stroke();
我只需要填写部分。
最佳答案
只是不要调用stroke
方法。
Sample
关于javascript - canvas 0px线条图(html5),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15042644/