Canvas API 中用于设置字母间距的属性是什么?

Canvas API 中用于设置字母间距的属性是什么?

发表时间:2024-09-11


运行效果

Canvas提供了letterSpacing属性用于设置中文的字与字之间,英文单词的字母与字母之间的距离,其单位为像素(px)。当letterSpacing的值增大时,中文字或字母之间的间距也会相应增大。例如,当letterSpacing设置为4px时,字间的间距呈现出这种效果;当增加到6px时,间距更为明显;进一步增加到8px时,间距则更加显著。

以下是一个网页示例,展示了如何在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
<!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 = "30px 黑体";

ctx.letterSpacing = "4px";

ctx.fillText("图形开发学院: www.graphAnywhere.com", 30,70);

ctx.letterSpacing = "6px";

ctx.fillText("图形开发学院: www.graphAnywhere.com", 30,150);

ctx.letterSpacing = "8px";
ctx.fillText("图形开发学院: www.graphAnywhere.com", 30, 230);

</script>

</html>

在这个示例中,我们首先定义了一个Canvas元素,并设置了其宽度和高度。然后,通过JavaScript中canvas.getContext()方法获取从画板中获取“2D渲染上下文”对象。
接下来使用letterSpacing属性设置字母间距。如设置为4px。接着使用filtext()方法绘制文字。接着,继续使用letterSpacing属性增大字母间距,如设置为8px。可以看到,当letterSpacing值增大时,中文的字与字之间的间距,也会相应增大。字母与字母之间的间距,也会相应增大。