FabricJS – 如何在 Line 对象的 URL 字符串中设置质量级别?
在本教程中,我们将学习如何使用 FabricJS 在 Line 对象的 URL 字符串中设置质量级别。Line 元素是 FabricJS 提供的基本元素之一。它用于创建直线。由于线元素在几何上是一维的并且不包含内部,因此它们永远不会填充。
我们可以通过创建 fabric.Line 的实例、指定线的 x 和 y 坐标并将其添加到画布来创建线对象。为了在 Line 对象的 URL 字符串中设置质量级别,我们使用 quality 属性。
语法
toDataURL({ quality: Number }: Object): String
参数
options(可选) - 此参数是一个 Object,它为 Line 对象的 URL 表示提供额外的自定义。使用此参数,可以更改高度、质量、格式以及许多其他属性,其中 quality 是一个属性。
选项键
quality - 此属性接受一个 Number 值,该值表示最终输出图像的质量级别。可接受的值介于 0 和 1 之间,不包括 0。0.1 表示最差质量,1 表示最佳质量。此属性仅可用于 jpeg 格式。默认值为 1。
不使用 quality 属性
示例
让我们看一个代码示例,以查看不使用 quality 属性时输出图像的情况。一旦我们从开发者工具中打开控制台,我们就可以看到 Line 对象的 URL 表示。我们可以复制该 URL 并将其粘贴到新标签页的地址栏中以查看最终输出。由于我们没有使用 quality 属性,因此将使用默认值,即 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>Without using the quality property</h2> <p> You can open console from dev tools and see the output URL. You can copy that and paste it in the address bar of a new tab to see the image. </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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, angle: 70, }); // Add it to the canvas canvas.add(line); // Using the toDataURL method console.log(line.toDataURL({ format: 'jpeg' })); </script> </body> </html>
使用 quality 属性
示例
让我们看一个代码示例,以了解使用 quality 属性时 Line 对象的最终输出图像是什么样子。在这种情况下,我们传递了一个值为 0.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 quality property</h2> <p> You can open console from dev tools and see the output URL. You can copy that and paste it in the address bar of a new tab to see the image. </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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 20, angle: 70, }); // Add it to the canvas canvas.add(line); // Using the toDataURL method console.log(line.toDataURL({ format: 'jpeg' , quality: 0.1})); </script> </body> </html>
广告