在Canvas画布上如何设置单词间距?

运行效果

Canvas提供了wordSpacing属性用于设置设置单词间距,需要注意的是,wordSpacing属性主要对英文单词起作用。例如,当wordSpacing设置为10px时,英文单词之间的间距会有明显的变化;当增加到20px时,间距变化更为显著;而设置为30px时,单词间的距离则更大。
以下是一个网页示例,展示了如何在Canvas上设置单词间距:

示例效果与源代码:

运行效果

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>

<head>
<title>绘制基本图形(文本垂直对齐)</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="图形系统开发实战:基础篇 示例">
<meta name="author" content="hjq">
<meta name="keywords" content="canvas,anygraph,javascript,图形">
</head>

<body style="overflow: hidden; margin:10px;">
<canvas id="canvas" width="840" height="280" style="border:solid 1px #CCCCCC; box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);" />
</body>
<script>
// 从页面中获取画板对象
let canvas = document.getElementById('canvas');
// 从画板中获取“2D渲染上下文”对象
let ctx = canvas.getContext('2d');

// 设置字体
ctx.font = "bold 30px Inconsolata";

ctx.wordSpacing = "10px";

ctx.fillText("图形系统开发实战: use wordSpacing property", 40, 70);

ctx.wordSpacing = "20px";

ctx.fillText("图形系统开发实战: use wordSpacing property", 40, 150);

ctx.wordSpacing = "30px";

ctx.fillText("图形系统开发实战: use wordSpacing property", 40, 230);


</script>

</html>

在这个示例中,我们首先定义了一个Canvas元素,并设置了其宽度和高度。然后,通过JavaScript中canvas.getContext()方法获取从画板中获取“2D渲染上下文”对象。
接下来使用wordSpacing属性设置单词间距。需要注意的是,wordSpacing属性主要对英文单词起作用。例如,当wordSpacing设置为10px时,英文单词之间的间距会有明显的变化;当增加到20px时,间距变化更为显著;而设置为30px时,单词间的距离则更大。