如何使用 FabricJS 获取图像对象的透明度?


在本教程中,我们将了解如何使用 FabricJS 获取图像的不透明度。我们可以通过创建一个 fabric.Image 实例来创建一个图像对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性来轻松自定义它。为了获得图像的不透明度,我们使用 getObjectOpacity 方法。

语法

getObjectOpacity(): Number 

使用 getObjectOpacity 方法

举例

让我们看一个代码示例,以查看在使用 getObjectOpacity 方法时记录的输出。在这种情况下,将在控制台中显示默认的不透明度,即 1。

<!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 getObjectOpacity method</h2> <p> You can open console from dev tools and see that the logged value is being displayed in the console </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: 110, }); // Add it to the canvas canvas.add(image); // Using getObjectOpacity method console.log("The opacity is: ", image.getObjectOpacity()); </script> </body> </html>

使用 getObjectOpacity 方法并传递不透明度属性

举例

让我们看一个代码示例,以查看在将 getObjectOpacity 方法与不透明度属性结合使用时记录的输出。在这种情况下,图像对象的透明度已被指定为 0.7,因此记录的输出将为 0.7。

<!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 getObjectOpacity method and passing the opacity property</h2> <p> You can open console from dev tools and see that the opacity value is being displayed in the console </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: 110, opacity: 0.7, }); // Add it to the canvas canvas.add(image); // Using getObjectOpacity method console.log("The opacity is: ", image.getObjectOpacity()); </script> </body> </html>

更新于: 27-10-2022

188 次浏览

开启您的 职业生涯

完成课程并获得认证

立即开始
广告