0

我有以下代码,并且我不断获得非常粗体的字体,但我不是要求这样做。

var myText = new Kinetic.Text({
            x: RoundOneX +.5,
            y: RoundOneY+2.5,
            text: thisname,
            fontSize: "8pt",
            fontFamily: 'r',
            width: 70,
            stroke: 'black',
            align: 'center'
        });
4

1 回答 1

0

你的 width:70对于你的小 fontSize:"8pt"来说太厚了

您的代码将绘制文本的轮廓(内部填充将为空)。

尝试此配置并从那里进行调整:

var myText = new Kinetic.Text({
        x: RoundOneX +.5,
        y: RoundOneY+2.5,
        text: thisname,
        fontSize: "12pt",
        fontFamily: 'arial',
        fill: 'black',
        align: 'center'
    });
于 2013-03-10T01:33:31.697 回答