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


在本教程中,我们将学习如何使用 FabricJS 获取文本当前选中部分的样式。我们可以通过添加 fabric.Text 实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供额外的功能,如文本对齐、文本装饰、行高,这些功能分别可以通过 textAlign、underline 和 lineHeight 属性获得。我们还可以使用 getSelectionStyles 方法查找当前选择的样式。

语法

getSelectionStyles(startIndexopt, endIndexopt, completeopt)

参数

  • startIndexopt − 此参数接受一个数字,表示获取样式的起始索引。

  • endIndexopt − 此参数接受一个数字,表示获取样式的结束索引。

  • 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 sample
text 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 sample
text 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>

更新于:2022年9月14日

696 次浏览

启动您的 职业生涯

完成课程获得认证

开始学习
广告