如何使用 FabricJS 设置文本的旋转角度?


在本教程中,我们将使用 FabricJS 设置文本的旋转角度。我们可以通过添加 fabric.Text 的实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本装饰、行高,这些可以通过 textAlign、underline 和 lineHeight 属性分别获取。FabricJS 中的 angle 属性定义了对象的 2D 旋转角度。我们还有一个 centeredRotation 属性,它允许我们使用文本对象的中心点作为变换的原点。

语法

new fabric.Text(text: String , { angle: Number, centeredRotation: Boolean }: Object)

参数

  • text − 此参数接受一个字符串,即我们要显示的文本字符串。

  • options(可选) − 此参数是一个对象,它为我们的文本提供额外的自定义。使用此参数可以更改与文本对象相关的颜色、光标、笔触宽度以及许多其他属性,其中 angle 和 centeredRotation 是属性。

选项键

  • angle − 此属性接受一个数字,它以度为单位指定文本对象的旋转角度。

  • centeredRotation − 此属性接受一个布尔值,它确定文本对象的中心是否为变换的原点。

示例 1

将 angle 作为键传递自定义值,并禁用文本的居中旋转

让我们看一个代码示例,以设置 FabricJS 中文本的旋转角度。负角度表示逆时针方向,正角度表示顺时针方向。由于我们将 centeredRotation 赋值为 false,因此文本将在使用其角点作为旋转中心时旋转。

<!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 angle as key with a custom value and disabling the centered rotation for the Text</h2> <p>You can select and rotate the text object to verify that it uses its corner point as the center of rotation</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: 200, top: 70, left: 60, centeredRotation: false, angle: 15, }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

启用文本对象的居中旋转

从这个例子中我们可以看到,通过将 centeredRotation 属性设置为 true,我们的文本对象现在使用其中心作为旋转中心。在 1.3.4 版本之前,centeredScaling 和 centeredRotation 包含在一个名为 centerTransform 的属性中。

<!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>Enabling centered rotation for the text object</h2> <p>You can select and rotate the text to verify that it now uses its center as center of rotation</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: 200, top: 70, left: 110, centeredRotation: true, angle: 15, }); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新于: 2022-09-14

1K+ 阅读量

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告