表示文本对齐方式。可能的值有 "start"、"end"、"left"、"right" 和 "center"。建议使用 "start" 和 "end",不要使用 "left" 和 "right",因为前两者的意思更稳妥,能同时适合从左到右和从右到左显示(阅读)的语言。
textBaseline表示文本的基线。可能的值有 "top"、"hanging"、"middle"、"alphabetic"、 "ideographic" 和 "bottom"。
context.font = 'bold 14px Arial';
context.textAlign = 'center'; context.textBaseline = 'middle'; context.fillText('hello, world', 100, 100);