FabricJS – 如何设置图像选择的背景颜色?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 设置图像选择的背景颜色。我们可以通过创建 fabric.Image 实例来创建图像对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松地对其进行自定义。为了设置图像的背景颜色,我们使用 selectionBackgroundColor 属性。

语法

new fabric.Image( element: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | String, { choiceBackgroundColor: String }: Object, callback: function)

参数

  • element − 此参数接受 HTMLImageElement、HTMLCanvasElement、HTMLVideoElement 或 String,表示图像元素。字符串应为 URL,并将作为图像加载。

  • options(可选) - 此参数为 Object,可为对象提供额外的自定义。使用此参数,可以更改与图像对象相关的原点、描边宽度和许多其他属性,其中 selectionBackgroundColor 是其属性。

  • callback(可选) - 此参数为 function,将在应用最终过滤器后调用。

Options Keys

  • selectionBackgroundColor - 此属性接受 String 值。分配的值将决定选择的背景颜色。

未使用 selectionBackgroundColor 属性时的默认颜色

示例

让我们看一个代码示例,以了解未使用 selectionBackgroundColor 属性时选择如何显示。从这个例子中我们可以看出,选择区域或对象后面的区域没有颜色。

<!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>Default colour when selectionBackgroundColor property is not used</h2> <p> You can select the image object to see that the selection area has no colour </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"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 50, }); // 将其添加到画布 canvas.add(image); </script> </body> </html>

selectionBackgroundColor 属性作为键传递

示例

在此示例中,我们为 selectionBackgroundColor 属性分配一个值。在本例中,我们向其传递了十六进制值"#e0ffff",这是一种浅青色,因此选择区域看起来就是这种颜色。

<!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 selectionBackgroundColor property as key</h2> <p> You can select the image object to see that the selection area has a light cyan colour </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"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 50, selectionBackgroundColor: "#e0ffff", }); // 将其添加到画布 canvas.add(image); </script> </body> </html>

相关文章