在本教程中,我們將學習如何使用 FabricJS拉直圖像對象。
我們可以通過創建fabric.Image的實例來創建一個Image對象。既然是一個
FabricJS 的基本元素,我們還可以通過應用輕松自定義它
諸如角度、不透明度等屬性。為了拉直圖像對象,我們使用
拉直方法。
語法
straighten(): fabric.Object
登錄后復制
在不使用straighten的情況下向角度屬性傳遞值
方法
示例
讓我們看一個代碼示例,看看當 straighten 時我們的 Image 對象看起來如何
方法沒有被使用。 straighten 方法通過將對象從其所在位置旋轉來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> // 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>
登錄后復制
Using the straighten 方法
示例
讓我們看一個代碼示例,看看當 straighten 時 Image 對象是什么樣子的
方法與角度屬性結合使用。雖然我們已經設定了角度
旋轉為 45 度,我們的圖像對象將通過將其旋轉回 0 來拉直
degree as we have used the 拉直方法。
<!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> // 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>
登錄后復制
以上就是如何使用 FabricJS 拉直 Image 對象?的詳細內容,更多請關注www.92cms.cn其它相關文章!