如何使用 FabricJS 拉直 Image 对象?
fabricjsjavascripthtml5 canvas
在本教程中,我们将学习如何使用 FabricJS 拉直 Image 对象。我们可以通过创建 fabric.Image 实例来创建 Image 对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松自定义它。为了 拉直 Image 对象,我们使用 straighten 方法。
语法
straighten(): fabric.Object
在不使用 straighten 方法的情况下向 angle 属性传递一个值
示例
让我们看一个代码示例,看看当不使用 straighten 方法时我们的 Image 对象是什么样子。 straighten 方法通过将对象从其当前角度旋转到 0、90、180 或 270 等角度(具体取决于哪个角度更接近)来拉直对象。角度属性以度为单位设置对象的旋转角度。在这里,我们将角度指定为 45 度。但由于我们没有应用 straighten 属性,因此旋转角度将保持为 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 angle property a value without using the straighten method </h2> <p>You can see that the Image object has an angle of 45 degrees</p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化 image 图像元素 var imageElement = document.getElementById("img1"); // 初始化一个图像对象 var image = new fabric.Image(imageElement, { top: 50, left: 110, angle: 45, }); // 将其添加到画布 canvas.add(image); </script> </body> </html>
使用 straighten 方法
示例
让我们看一个代码示例,看看当 straighten 方法与 angle 属性结合使用时,Image 对象是什么样子。虽然我们将旋转角度设置为 45 度,但由于我们使用了 straighten 方法,我们的图像对象将通过将其旋转回 0 度而被 拉直。
<!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>Using the straighten method</h2> <p> You can see that the angle of rotation is 0 degree for the image object </p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化 image 图像元素 var imageElement = document.getElementById("img1"); // 初始化一个图像对象 var image = new fabric.Image(imageElement, { top: 50, left: 110, angle: 45, }); // 将其添加到画布 canvas.add(image); // 使用 straighten 方法 image.straighten(); </script> </body> </html>