在本教程中,我們將學習如何使用 FabricJS拉直圖像物件。 我們可以透過建立fabric.Image的實例來建立一個Image物件。既然是一個 FabricJS 的基本元素,我們也可以透過應用輕鬆自訂它 諸如角度、不透明度等屬性。為了拉直圖像對象,我們使用 拉直方法。
straighten(): fabric.Object
讓我們看一個程式碼範例,看看當 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>
讓我們看一個程式碼範例,看看當 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 物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!