在本教學中,我們將學習如何在 FabricJS 中識別 Image 實例的類型。我們可以透過建立fabric.Image的實例來建立一個Image物件。由於它是 FabricJS 的基本元素之一,我們也可以透過應用角度、不透明度等屬性輕鬆自訂它。為了識別 Image 實例的類型,我們使用 isType 方法。
isType(type: String): Boolean
type - 此參數接受一個String,它指定我們要檢查的類型。
讓我們來看一個程式碼範例,看看使用 isType 方法時記錄的輸出。 isType 方法傳回 true 或 false 值,取決於實例的類型是否與我們要檢查的類型相符。在這種情況下,由於類型匹配,因此傳回 true 值。
<!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 isType method</h2> <p> You can open console from dev tools and see that the logged output contains a true value </p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="max-width:90%" / alt="如何使用FabricJS識別Image實例的類型?" > <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, }); // Add it to the canvas canvas.add(image); // Using isType method console.log( "Is the specified type identical to an image instance? : ", image.isType("image") ); </script> </body> </html>
在此範例中,我們使用 isType 來檢查指定的圓圈類型是否與映像實例相同。此處,由於它們不相同,因此傳回錯誤值。
<!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 isType method with a different value</h2> <p> You can open console from dev tools and see that the logged output contains a false value </p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="max-width:90%" / alt="如何使用FabricJS識別Image實例的類型?" > <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, }); // Add it to the canvas canvas.add(image); // Using isType method console.log( "Is the specified type identical to an image instance? : ", image.isType("circle") ); </script> </body> </html>
以上是如何使用FabricJS識別Image實例的類型?的詳細內容。更多資訊請關注PHP中文網其他相關文章!