在本教程中,我們將學習如何建立映像的 JSON 表示形式 使用 FabricJS 的物件。我們可以透過建立一個實例來建立一個 Image 對象 織物.圖片。由於它是FabricJS的基本元素之一,我們也可以輕鬆地 透過應用角度、不透明度等屬性來自訂它。為了創建 JSON Image 物件的表示,我們使用 toJSON 方法。
toJSON(propertiesToInclude: Array): Object
propertiesToInclude - 此參數接受一個 Array,其中包含任何 我們可能希望在輸出中額外包含的屬性。這個參數是 可選。
讓我們來看一個程式碼範例,看看使用 toJSON 方法時記錄的輸出。在 在這種情況下,將傳回影像實例的 JSON 表示形式。
<!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 toJSON method</h2> <p> You can open console from dev tools and see that the logged output contains the JSON representation of the image instance </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, }); // Add it to the canvas canvas.add(image); // Using the toJSON method console.log( "JSON representation of the Image instance is: ", image.toJSON() ); </script> </body> </html>
讓我們來看一個程式碼範例,看看如何使用 toJSON 方法。在本例中,我們新增了一個名為「name」的自訂屬性。我們可以 將特定屬性作為選項中的第二個參數傳遞給 fabric.Image 實例 物件並將相同的金鑰傳遞給 toJSON 方法。
<!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 toJSON method to add additional properties</h2> <p> You can open console from dev tools and see that the logged output contains added property called name </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 with name key // passed in options object var image = new fabric.Image(imageElement, { top: 50, left: 110, name: "Image instance", }); // Add it to the canvas canvas.add(image); // Using the toJSON method console.log( "JSON representation of the Image instance is: ", image.toJSON(["name"]) ); </script> </body> </html>
在本教學中,我們使用兩個範例來示範如何建立 JSON 使用 FabricJS 表示 Image 物件。
以上是如何使用 FabricJS 建立 Image 物件的 JSON 表示?的詳細內容。更多資訊請關注PHP中文網其他相關文章!