FabricJS – 在将Polygon对象转换为HTMLCanvasElement后找到数据url
我们可以通过创建一个fabric.Polygon的实例来创建一个Polygon对象。一个多边形对象可以被描述为由一组连接的直线段组成的任何封闭形状。由于它是FabricJS的基本元素之一,我们也可以通过应用角度、不透明度等属性轻松地定制它。
为了将多边形对象转换成HTMLCanvasElement,我们使用toCanvasElement方法。它返回的DOM元素类型为HTMLCanvasElement,该接口从HTMLElement接口继承其属性和方法。我们使用toDataURL方法来找到类似于图片的数据URL表示。返回的图片的格式是指定的类型,或者默认为png,分辨率为96dpi。
语法
HTMLCanvasElement.toDataURL()
例1:使用toCanvasElement方法
让我们看一个代码例子,看看使用 toCanvasElement 方法时的记录输出。使用 toCanvasElement 方法时,会返回类型为 HTMLCanvasElement 的 DOM 元素。HTMLCanvasElement接口提供了各种方法和属性来改变画布的表现形式。它继承了HTMLElement接口的属性和方法。你可以从开发工具中打开控制台,看到HTMLCanvasElement类型的DOM元素正在被返回。
<!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</h2>
<p>You can open console from dev tools to see the logged output</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
console.log(
"The output on using toCanvasElement method is:",
polygon.toCanvasElement()
);
</script>
</body>
</html>
例2:使用toDataURL方法
让我们看一个代码例子,看看当toDataURL方法与toCanvasElement方法一起使用时的记录输出,以找到转换为HTMLCanvasElement的Polygon对象图像的数据URL字符串。我们可以复制该URL并将其粘贴到新标签的地址栏中,以查看最终的输出。由于我们指定了格式为 “jpeg”,所以图像将是jpeg格式的。
<!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 toDataURL method</h2>
<p>
You can open console from dev tools to see that the data like URL string of the image is being returned
</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 toDataURL method
console.log(
"The data-URL is as follows:",
polygonCanvas.toDataURL({ format: "jpeg" })
);
</script>
</body>
</html>
结论
在本教程中,我们用两个简单的例子来演示如何使用FabricJS将Polygon对象转换为HTMLCanvasElement后找到数据URL。