如何使用 FabricJS 矫正图像对象?


在本教程中,我们将学习如何使用 FabricJS 矫正图像对象。我们可以通过创建fabric.Image的实例来创建图像对象。由于它是 FabricJS 的基本元素之一,因此我们也可以通过应用角度、不透明度等属性轻松自定义它。为了矫正图像对象,我们使用straighten方法。

语法

straighten(): fabric.Object

在不使用straighten方法的情况下为angle属性传递值

示例

让我们看一个代码示例,看看当不使用straighten方法时我们的图像对象是什么样子。straighten方法通过将其从当前角度旋转到 0、90、180 或 270 等来矫正对象,具体取决于哪个角度更接近。angle 属性以度为单位设置对象的旋转角度。在这里,我们将角度指定为 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://tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiating the image element var imageElement = document.getElementById("img1"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, angle: 45, }); // Add it to the canvas canvas.add(image); </script> </body> </html>

使用straighten方法

示例

让我们看一个代码示例,看看当将straighten方法与angle属性结合使用时,图像对象是什么样子。虽然我们将旋转角度设置为 45 度,但我们的图像对象将通过将其旋转回 0 度来矫正,因为我们使用了straighten方法。

<!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://tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiating the image element var imageElement = document.getElementById("img1"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, angle: 45, }); // Add it to the canvas canvas.add(image); // Using the straighten method image.straighten(); </script> </body> </html>

更新于: 2022年10月28日

267 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始学习
广告