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


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

语法

scaleToWidth(value: Number, absolute: Boolean)

参数

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

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

示例 1

文本对象的默认外观

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

<!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."
, { left: 60, top: 70, fill: "green", }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

使用自定义值传递 scaleToWidth 方法

在这个例子中,我们将看到如何为 scaleToWidth 方法赋值,将我们的文本对象缩放至给定宽度。由于我们传入的值为 400,因此这将成为文本对象的新宽度。

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

更新于:2022年9月14日

235 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告