FabricJS – 如何移除克隆图像中的当前对象变换?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 移除克隆图像中的当前对象变换(缩放、角度、翻转和倾斜)。我们可以通过创建 fabric.Image 实例来创建 Image 对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松地对其进行自定义。为了删除克隆图像中的当前对象变换,我们使用 withoutTransform 属性。

语法

cloneAsImage(callback: function, { withoutTransform: Boolean }: Object): fabric.Object

参数

  • callback(可选)- 此参数是一个 函数,将使用克隆图像实例作为第一个参数来调用。

  • options(可选)- 此参数是一个可选的 Object,它为我们的克隆图像提供额外的自定义。使用此参数,我们可以设置乘数、裁剪克隆图像、删除当前对象变换或更改许多其他属性,其中 withoutTransform 是一个属性。

选项键

  • withoutTransform − 此属性接受一个 Boolean 值,该值确定是否要删除当前对象变换。此属性是可选的。

使用 withoutTransform 属性并向其传递"true"值

示例

让我们看一个代码示例,说明当使用 withoutTransform 属性并向其传递"true"值时,克隆的图像对象如何显示。图像对象已经具有 skew 变换。但是,由于我们向 withoutTransform 属性传递了一个"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 the withoutTransform property and passing it a ‘true’ value</h2> <p>You can see that clone image does not have skew transformation</p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiating the image element var imageElement = document.getElementById("img1"); // 启动阴影对象 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); Img.set("left", 150); canvas.add(Img); }, { withoutTransform: true, } ); </script> </body> </html>

使用 withoutTransform 属性并向其传递"false"值

示例

在此示例中,我们使用了 withoutTransform 属性并向其传递"false"值。这意味着,无论我们的图像对象具有哪种对象变换,其克隆图像也将包含这些变换。因此,由于我们的图像对象的水平倾斜角 (skewX) 为 20 度,并且 withoutTransform 已传递"false"值,因此克隆图像对象也将具有同样的倾斜角。

<!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 withoutTransform property and passing it a ‘false’ value</h2> <p>You can see that clone image contains skew transformation</p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiating the image element var imageElement = document.getElementById("img1"); // 启动阴影对象 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); Img.set("left", 150); canvas.add(Img); }, { withoutTransform: false, } ); </script> </body> </html>

相关文章