如何使用 FabricJS 获取文本中当前选择的样式?

在本教程中,我们将学习如何使用 FabricJS 获取当前选择的文本的样式。我们可以通过添加 Fabric.Text 的实例在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,而且还提供了附加功能,例如文本对齐、文本装饰、行高,这些功能可以分别通过属性 textAlign、underline 和 lineHeight 获得。我们还可以使用 getSelectionStyles 方法找到当前选择的样式。
语法
getSelectionStyles(startIndexopt, endIndexopt, completeopt)
参数
startIndexopt - 此参数接受一个数字,表示获取样式的起始索引。
endIndexopt - 此参数接受一个Number,表示获取样式的结束索引。
completeopt - 此参数接受一个布尔值,决定是否获取完整样式。
示例 1
使用 getSelectionStyles 方法
让我们看一个代码示例,以查看使用 getSelectionStyles 方法时记录的输出。在这种情况下,将显示从第 0 个索引一直到第 4 个索引的样式。
<!DOCTYPE html>
<html>
<head>
<!-- Adding the Fabric JS Library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
<h2>Using the getSelectionStyles method</h2>
<p>You can open console from dev tools and see that the value is being displayed in the console</p>
<canvas id="canvas"></canvas>
<script>
// Initiate a canvas instance
var canvas = new fabric.Canvas("canvas");
canvas.setWidth(document.body.scrollWidth);
canvas.setHeight(250);
// Initiate a text object
var text = new fabric.Text("Add sampletext here", {
width: 300,
fill: "green",
fontWeight: "bold",
});
// Add it to the canvas
canvas.add(text);
// Using getSelectionStyles method
console.log("The style is", text.getSelectionStyles(0, 5, true));
</script>
</body>
</html>
示例 2
使用 getSelectionStyles 方法并传递不同的值
让我们看一个代码示例,看看当 getSelectionStyles 方法传递不同值时记录的输出。在这种情况下,记录的输出将包含第 4 个和第 5 个索引处的字符样式。
<!DOCTYPE html>
<html>
<head>
<!-- Adding the Fabric JS Library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script>
</head>
<body>
<h2>Using the getSelectionStyles method and passing different values</h2>
<p>You can open console from dev tools and see that the value is being displayed in the console</p>
<canvas id="canvas"></canvas>
<script>
// Initiate a canvas instance
var canvas = new fabric.Canvas("canvas");
canvas.setWidth(document.body.scrollWidth);
canvas.setHeight(250);
// Initiate a text object
var text = new fabric.Text("Add sampletext here", {
width: 300,
fill: "green",
fontWeight: "bold",
styles: {
0: {
5: {
fontSize: 55,
fill: "blue",
fontStyle: "oblique",
},
4: {
fontSize: 45,
fill: "pink",
fontWeight: "bold",
},
},
},
});
// Add it to the canvas
canvas.add(text);
// Using getSelectionStyles method
console.log("The style is", text.getSelectionStyles(4, 6, true));
</script>
</body>
</html>
javascript