如何使用 FabricJS 将文本对象缩放至指定高度?


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

语法

scaleToHeight(value: Number, absolute: Boolean)

参数

  • value − 此参数接受一个数字,用于确定文本对象的新高度值。

  • absolute − 此参数接受一个布尔值,用于确定是否忽略视口。

示例 1

文本对象的默认外观

让我们来看一个代码示例,了解当未使用 scaleToHeight 方法时文本对象的外观。在这种情况下,文本对象不会在水平或垂直方向上缩放。

<!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>Default appearance of the Text object</h2> <p>You can see that the object has not been scaled in horizontal or vertical direction</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, left: 60, top: 70, fill: "green", }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

使用自定义值传递 scaleToHeight 方法

在此示例中,我们将看到如何为 scaleToHeight 方法分配值将文本对象缩放至指定高度。由于我们传递的值为 300,因此这将成为文本对象的新高度。

<!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>Passing the scaleToHeight method with a custom value</h2> <p>You can see that the new height of our text object is 300</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, left: 60, top: 70, fill: "green", }); // Using scaleToHeight method text.scaleToHeight(300, false); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新于: 2022-09-14

288 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告