如何使用 FabricJS 设置文本的旋转角度?
在本教程中,我们将使用 FabricJS 设置文本的旋转角度。我们可以通过添加 fabric.Text 实例在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,而且还提供其他功能,如文本对齐、文本装饰、行高,这些功能可分别通过属性 textAlign、underline 和 lineHeight 获取。FabricJS 中的 angle 属性定义对象的 2D 旋转角度。我们还有 centeredRotation 属性,允许我们使用文本对象的中心点作为转换的原点。
语法
new fabric.Text(text: String , { angle: Number, centeredRotation: Boolean }: Object)
参数
text − 此参数接受 String,即我们想要显示的文本字符串。
options (可选) − 此参数是一个 Object,可为我们的文本提供额外的自定义。使用此参数,可以更改与文本对象相关的颜色、光标、笔触宽度和许多其他属性,其中 angle 和 centeredRotation 是属性。
选项键
angle - 此属性接受一个 Number,该数字以度为单位指定文本对象的旋转角度。
centeredRotation - 该属性接受一个 Boolean 值,该值确定文本对象的中心是否为变换的原点。
示例 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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 text 文本对象 var text = new fabric.Text("Add Sample Text Here", { width: 200, top: 70, left: 60, centeredRotation: false, angle: 15, }); // 将其添加到画布 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> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化一个 text 文本对象 var text = new fabric.Text("Add Sample Text Here", { width: 200, top: 70, left: 110, centeredRotation: true, angle: 15, }); // 将其添加到画布 canvas.add(text); </script> </body> </html>