如何在 FabricJS 中设置文本实例的旋转角度?


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

语法

rotate(angle: Number)

参数

  • angle − 此参数接受一个数字,该数字设置实例以中心旋转的角度

示例 1

文本对象的默认外观

让我们来看一个代码示例,看看在不使用 rotate 方法时文本对象是什么样的。在这种情况下,我们的文本对象不会旋转任何角度。

<!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 angle of rotation of text object is zero</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

使用自定义值传递 rotate 方法

在这个例子中,我们将看到如何为 rotate 方法赋值会使我们的文本对象旋转一定的角度。由于我们传入的值为 45,因此实例将旋转 45 度。

<!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 rotate method with a custom value</h2> <p>You can see that the angle of rotation of text object is 45 degrees</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: 110, top: 70, fill: "green", }); // Using the rotate method text.rotate(45); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新于:2022年9月14日

170 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告