如何使用 FabricJS 设置线的旋转角度?
在本教程中,我们将学习如何使用 FabricJS 设置线的旋转角度。Line 元素是 FabricJS 中提供的基本元素之一。它用于创建直线。由于线元素在几何上是一维的并且不包含内部,因此它们永远不会被填充。
我们可以通过创建 fabric.Line 的实例、指定线的 x 和 y 坐标并将其添加到画布来创建线对象。 centeredRotation 属性允许我们使用线对象的中心点作为变换的原点。
语法
new fabric.Line( points: Array , { angle: Number, centeredRotation: Boolean }: Object)
参数
points − 此参数接受一个 Array 点,该点确定 (x1, y1) 和 (x2, y2) 值,这些值分别是线的起点和终点的 x 轴和 y 轴坐标。
options(可选)− 此参数是一个 Object,它为我们的对象提供额外的自定义。使用此参数可以更改与线对象相关的原点、笔触宽度和许多其他属性,其中 angle 和 centeredRotation 是属性。
选项键
angle - 此属性接受 Number,该 Number 指定线对象的旋转角度(以度为单位)。
centeredRotation - 该属性接受 Boolean 值,该值确定线对象的中心是否为变换的原点。
将 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 Line</h2> <p> You can select and rotate the line 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); // 启动 Line 对象 var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, centeredRotation: false, angle: 15, }); // 将其添加到画布 canvas.add(line); </script> </body> </html>
为线对象启用居中旋转
示例
从此示例中我们可以看出,通过将 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 line object</h2> <p> You can select and rotate the line object 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); // 启动 Line 对象 var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, centeredRotation: true, angle: 15, }); // 将其添加到画布 canvas.add(line); </script> </body> </html>