在本教程中,我們將學(xué)習如何使用以下方法裁剪克隆圖像中的頂部偏移量
FabricJS。我們可以通過創(chuàng)建fabric.Image的實例來創(chuàng)建一個Image對象。自從
它是FabricJS的基本元素之一,我們也可以通過應(yīng)用輕松定制它
角度、不透明度等屬性。為了裁剪克隆圖像中的top偏移,我們
使用top屬性。
語法
cloneAsImage( callback: function, { top: Number}: Object): fabric.Object
登錄后復(fù)制
參數(shù)
回調(diào)(可選) – 此參數(shù)是一個函數(shù),將使用克隆圖像實例作為第一個調(diào)用論證。
選項(可選) – 此參數(shù)是一個可選的對象,它為我們的克隆圖像提供額外的自定義。使用此參數(shù),我們可以設(shè)置乘數(shù)、裁剪克隆圖像、刪除當前對象變換或可以更改許多屬性,其中 top 是一個屬性。
選項鍵
top – 此屬性接受一個 Number 值,表示 top 必須偏移
被裁剪。此屬性是可選的。
不使用top屬性
示例
讓我們看一個代碼示例,了解當 top 時克隆的 Image 對象如何出現(xiàn)
屬性沒有被使用。在這種情況下,克隆的圖像將不會被裁剪。
<!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>Without using the top property</h2> <p>You can see that no cropping has been applied to the clone image</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 a shadow object var shadow = new fabric.Shadow({ color: "#308080", blur: 3, }); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, skewX: 20, shadow: shadow, }); // Using cloneAsImage method image.cloneAsImage(function(Img) { Img.set("top", 90); canvas.add(Img); }); </script> </body> </html>
登錄后復(fù)制
使用top屬性
示例
在此示例中,我們使用了 top 屬性并向其傳遞了值 30,該值是
裁剪克隆圖像的top偏移量。因此,頂部部分將被裁剪。
<!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 top property</h2> <p>You can see that cropping has been applied to the clone image</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 a shadow object var shadow = new fabric.Shadow({ color: "#308080", blur: 3, }); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, skewX: 20, shadow: shadow, }); // Using cloneAsImage method image.cloneAsImage( function(Img) { Img.set("top", 150); canvas.add(Img); }, { top: 30, } ); </script> </body> </html>
登錄后復(fù)制
結(jié)論
在本教程中,我們使用兩個示例來演示如何裁剪頂部偏移量
使用 FabricJS 的克隆圖像。
以上就是如何使用 FabricJS 裁剪克隆圖像中的頂部偏移?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!