Fabric.js – 如何检查 Image 对象是否完全包含在另一个对象的区域中?
fabricjsjavascripthtml5 canvas
在本教程中,我们将学习如何使用 FabricJS 检查 Image 对象是否完全包含在另一个对象的区域中。我们可以通过创建 fabric.Image 实例来创建 Image 对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松地对其进行自定义。为了检查图像对象是否完全包含在另一个对象的区域内,我们使用 isContainedWithinObject 方法。
语法
isContainedWithinObject(other: Object, absolute: Boolean, calculate: Boolean ): Boolean
参数
other − 此参数接受一个 Object,该 Object 指定我们要测试的对象。
absolute(可选) − 此参数接受一个 String 值,该值指定是否使用没有 viewportTransform 的坐标。此参数是可选的。
calculate(可选) − 此参数接受一个 Boolean 值,该值指定是否使用当前位置的坐标。此参数是可选的。
使用 isContainedWithinObject 方法
示例
让我们看一个代码示例,以查看使用 isContainedWithinObject 方法时记录的输出。isContainedWithinObject 方法在检查 Image 对象是否完全包含在另一个对象的区域内时返回 true 或 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 isContainedWithinObject method</h2> <p> You can open console from dev tools and see that the logged output contains a true value </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: 110, }); // 初始化一个矩形对象 var rectangle = new fabric.Rect({ width: 390, height: 130, top: 40, left: 80, fill: "transparent", stroke: "red", strokeWidth: 6, }); // 将它们添加到画布 canvas.add(rectangle); canvas.add(image); // Using isContainedWithinObject method console.log( "Is the Image object contained within the area of the rectangle object ? : ", image.isContainedWithinObject(rectangle) ); </script> </body> </html>
对多个对象使用 isContainedWithinObject 方法
示例
在此示例中,我们分别对两个矩形对象 rect1 和 rect2 使用了 isContainedWithinObject 方法。由于 Image 对象不包含在 rect2 区域内,因此控制台中返回 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 isContainedWithinObject method with multiple objects</h2> <p> You can open console from dev tools and see that the logged output contains a false value </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: 110, }); // 初始化一个矩形对象 var rect1 = new fabric.Rect({ width: 390, height: 130, top: 40, left: 80, fill: "transparent", stroke: "red", strokeWidth: 6, }); // 初始化另一个矩形对象 var rect2 = new fabric.Rect({ width: 120, height: 40, top: 170, left: 320, fill: "blue", }); // 将它们添加到画布 canvas.add(rect1); canvas.add(rect2); canvas.add(image); // Using isContainedWithinObject method console.log( "Is the Image object contained within the area of the rectangle (rect2) object?: ", image.isContainedWithinObject(rect2) ); </script> </body> </html>
结论
在本教程中,我们使用了两个示例来演示如何检查 FabricJS 中 Image 对象是否完全包含在另一对象的区域中。