canvas 0px画线(html5)

时间:2013-02-23 16:16:48

标签: javascript html5 canvas

(对不起我的英文) 所以我的问题是,我如何制作0px线? 如果我称之为线宽1px宽度:/

    imgCtx.beginPath();
        imgCtx.lineWidth = 0;
        imgCtx.fill();
    imgCtx.stroke();

我只需要填充的部分。

2 个答案:

答案 0 :(得分:2)

只是不要调用stroke方法。

Sample

答案 1 :(得分:0)

如果您只需要填充部分,那么不要询问如何获得0px轮廓,询问如何只获得填充部分。

var ctx = canvas.getContext("2d");
ctx.strokeStyle = "none";