FabricJS – 查找转换为HTMLCanvasElement的多边形对象的尺寸
我们可以通过创建一个fabric.Polygon的实例来创建一个Polygon对象。一个多边形对象可以被描述为由一组连接的直线段组成的任何封闭形状。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性轻松地定制它。
为了将多边形对象转换成HTMLCanvasElement,我们使用toCanvasElement方法。它返回HTMLCanvasElement类型的DOM元素,这个接口从HTMLElement接口继承其属性和方法。我们使用HTMLCanvasElement的width和height属性,它继承自其父辈HTMLElement,以找到转换为HTMLCanvasElement的多边形对象的尺寸。
语法
HTMLCanvasElement.height
HTMLCanvasElement.width
例1:使用toCanvasElement方法和使用Width属性
让我们看一个代码例子,看看当toCanvasElement方法和宽度属性一起使用时,多边形对象是什么样子。宽度是一个正整数,表示画布上一行的像素数。我们可以通过开发工具打开控制台,看到宽度值是200。
<!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 toCanvasElement method and using the width property</h2>
<p>
You can open console from dev tools to see that the width value is being displayed as 200
</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
var polygonCanvas = polygon.toCanvasElement({
width: 200,
});
// Using the width property
console.log("The width is as follows:", polygonCanvas.width);
</script>
</body>
</html>
例2:使用toCanvasElement方法和使用高度属性
让我们看一个代码例子,看看当toCanvasElement方法和height属性一起使用时的记录输出。height是一个正整数,表示画布上一列的像素数。在这个例子中,我们可以从开发工具中打开控制台,看到高度值是200。
<!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 toCanvasElement method and using the height property</h2>
<p>
You can open console from dev tools to see that the height value is being displayed as 200
</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
var polygonCanvas = polygon.toCanvasElement({
height: 200,
});
// Using the height property
console.log("The height is as follows:", polygonCanvas.height);
</script>
</body>
</html>
结论
在本教程中,我们用两个简单的例子来演示如何使用FabricJS找到转换为HTMLCanvasElement的多边形对象的尺寸。