FabricJS – 如何设置图像选区的背景颜色?
在本教程中,我们将学习如何使用 FabricJS 设置图像选区的背景颜色。我们可以通过创建 fabric.Image 的实例来创建图像对象。由于它是 FabricJS 的基本元素之一,因此我们也可以通过应用角度、不透明度等属性轻松自定义它。为了设置图像的背景颜色,我们使用 selectionBackgroundColor 属性。
语法
new fabric.Image( element: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | String, { selectionBackgroundColor: String }: Object, callback: function)
参数
element − 此参数接受HTMLImageElement、HTMLCanvasElement、HTMLVideoElement 或 String,表示图像元素。字符串应为 URL,并将加载为图像。
options (可选) − 此参数是一个对象,它为我们的对象提供额外的自定义。使用此参数,可以更改与图像对象相关的原点、笔划宽度和许多其他属性,其中selectionBackgroundColor 是一个属性。
callback (可选) − 此参数是一个函数,在最终应用过滤器后将调用该函数。
选项键
selectionBackgroundColor − 此属性接受字符串值。分配的值将确定选区的背景颜色。
未使用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://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: 50, }); // Add it to the canvas 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://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: 50, selectionBackgroundColor: "#e0ffff", }); // Add it to the canvas canvas.add(image); </script> </body> </html>
广告