gpt4 book ai didi

canvas - Fabric.js 中的 'toObject()' 函数

转载 作者:行者123 更新时间:2023-12-02 04:15:00 25 4
gpt4 key购买 nike

我在原始 Canvas 对象上设置了一些用户定义的属性,当我使用canvas.getActiveObject.toObject()时,结果无法显示用户定义的属性,我该怎么办可以让它显示出来吗?或者是我设置属性的方法不对?谢谢。

最佳答案

调用 Object.toObject() 时,您可以提供 propertiesToInclude 数组。请参阅API Doc here .

示例:

var rect = new fabric.Rect({
foo: 'bar', // property that should be included
width: 50,
height: 50,
left: 50,
top: 50
});
var asObject = rect.toObject(['foo']);
console.log(object.foo); // 'bar'

关于canvas - Fabric.js 中的 'toObject()' 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34347336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com