如何使用 FabricJS 在文本对象的序列化中包含其默认值?
在本教程中,我们将学习如何使用 FabricJS 在文本对象的序列化中包含其默认值。我们可以通过添加 fabric.Text 的实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还可以添加其他功能。序列化用于导出画布内容。为此,我们使用 toObject() 和 toJSON() 方法。includeDefaultValues 属性允许我们在序列化时包含或省略对象的默认值。
语法
new fabric.Text(text: String , { includeDefaultValues: Boolean }: Object)
参数
text − 此参数接受一个字符串,即我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数可以更改与对象的属性相关的颜色、光标、边框宽度以及许多其他属性,其中 includeDefaultValues 是一个属性。
选项键
includeDefaultValues − 此属性接受一个布尔值。传递 false 值时,文本对象的默认值不会包含在其序列化中。
示例 1
使用 includeDefaultValues 属性并将值设置为“true”
让我们来看一个代码示例,看看当 includeDefaultValues 属性赋值为 true 时,日志输出是什么。在这种情况下,我们可以在控制台中看到对象的序列化包含默认属性,例如“angle”:0,“fontWeight”:“normal”,“underline”:false,“overline”:false,“fontSize”:40 等。
<!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 includeDefaultValues property and passing the value as “true”</h2> <p>You can open console from dev tools and see that the default values of the serialized text object</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 text object var text = new fabric.Text("Add sample
text here", { left: 60, top: 50, width: 300, fill: "green", textAlign: "center", includeDefaultValues: true, }); // Add it to the canvas canvas.add(text); // Using JSON.stringify method to serialize the canvas console.log(JSON.stringify(canvas)); </script> </body> </html>
示例 2
使用 includeDefaultValues 属性并将值设置为“false”
在这个例子中,我们将看到如何使用 includeDefaultValues 属性并将其设置为 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 includeDefaultValues property and passing the value as “false”</h2> <p>You can open console from dev tools and see that the default values have been omitted from the serialized text object </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 text object var text = new fabric.Text("Add sample
text here", { left: 60, top: 50, width: 300, fill: "green", textAlign: "center", includeDefaultValues: false, }); // Add it to the canvas canvas.add(text); // Using JSON.stringify method to serialize the canvas console.log(JSON.stringify(canvas)); </script> </body> </html>
广告