如何使用 FabricJS 获取文本的缩放高度?


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

语法

getScaledHeight()

示例 1

使用 getScaledHeight 方法

让我们来看一个代码示例,看看使用 getScaledHeight 方法时的日志输出。在这种情况下,将返回对象的高度。

<!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 getScaledHeight method</h2> <p>You can open console from dev tools and see that the height 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 getScaledHeight method console.log("The scaled height is", text.getScaledHeight()); </script> </body> </html>

示例 2

使用 getScaledHeight 方法并传递 scaleY 属性

让我们来看一个代码示例,看看将 getScaledHeight 方法与 scaleY 属性结合使用时的日志输出。在这种情况下,最终的缩放高度将显示在控制台中。

<!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 getScaledHeight method and passing the scaleY property</h2> <p>You can open console from dev tools and see that the height value is being displayed in the console has increased </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", scaleY: 2, }); // Add it to the canvas canvas.add(text); // Using getScaledHeight method console.log("The scaled height is", text.getScaledHeight()); </script> </body> </html>

更新于:2022年9月14日

210 次浏览

开启你的职业生涯

完成课程获得认证

开始学习
广告
© . All rights reserved.