FabricJS – 设置多边形对象的HTMLCanvasElement的裁剪偏移量
我们可以通过创建fabric.Polygon的实例来创建一个多边形对象。多边形对象可以由任何由一组连接的直线段组成的封闭形状来表征。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性来轻松自定义它。
为了将多边形对象转换为HTMLCanvasElement,我们使用toCanvasElement方法。它返回类型为HTMLCanvasElement的DOM元素,这是一个继承其属性和方法自HTMLElement接口的接口。我们使用left和top属性来设置多边形对象的HTMLCanvasElement的裁剪偏移量。
语法
toCanvasElement({ left: Number | top: Number }: Object): HTMLCanvasElement
参数
options (可选) − 此参数接受一个对象,该对象为我们的HTMLCanvasElement提供额外的自定义。使用此参数,可以更改与HTMLCanvasElement相关的许多属性,其中left和top是属性,例如高度、左侧裁剪偏移量等等。
选项键
left − 此属性接受一个数字值,表示裁剪左侧偏移量。此属性是可选的。
top − 此属性接受一个数字值,表示裁剪顶部偏移量。此属性是可选的。
示例1:使用left属性
让我们看一个代码示例,看看在使用left属性以及toCanvasElement方法时记录的输出。由于我们传递给它一个值为100的值,它将用作左侧裁剪偏移量。我们还使用了toDataURL方法来显示left属性实际上如何影响多边形对象。我们可以从开发者工具中打开控制台,并在新标签页中打开url字符串以查看输出图像。
<!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 left property</h2> <p> You can open console from dev tools, copy the url string and paste it in a new tab to see that the polygon object has been cropped by 100px offset from the left </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a polygon object var polygon = new fabric.Polygon( [ { x: 600, y: 310 }, { x: 650, y: 450 }, { x: 600, y: 480 }, { x: 550, y: 480 }, { x: 450, y: 460 }, { x: 300, y: 210 }, ], { fill: "#778899", stroke: "blue", strokeWidth: 5, top: 50, left: 100, scaleX: 0.5, scaleY: 0.5, } ); // Adding it to the canvas canvas.add(polygon); // Using toCanvasElement method with left key var leftCropOffset = polygon.toCanvasElement({ left: 100, }); // Using toDataURL method console.log(leftCropOffset.toDataURL()); </script> </body> </html>
示例2:使用top属性
让我们看一个代码示例,看看在使用top属性以及toCanvasElement方法时记录的输出。由于我们传递了一个值为100的值,它将用作多边形的顶部裁剪偏移量。
<!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 top property</h2> <p> You can open console from dev tools, copy the url string and paste it in a new tab to see that the polygon object has been cropped by 100px offset from the top </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a polygon object var polygon = new fabric.Polygon( [ { x: 600, y: 310 }, { x: 650, y: 450 }, { x: 600, y: 480 }, { x: 550, y: 480 }, { x: 450, y: 460 }, { x: 300, y: 210 }, ], { fill: "#778899", stroke: "blue", strokeWidth: 5, top: 50, left: 100, scaleX: 0.5, scaleY: 0.5, } ); // Adding it to the canvas canvas.add(polygon); // Using toCanvasElement method with top key var topCropOffset = polygon.toCanvasElement({ top: 100, }); // Using toDataURL method console.log(topCropOffset.toDataURL()); </script> </body> </html>
结论
在本教程中,我们使用两个简单的示例演示了如何使用FabricJS设置多边形对象的HTMLCanvasElement的裁剪偏移量。