var imgInstance_l = new this.fabric.Image(imgElement_l, {
zIndex: 0,
scaleX: _this.scale,
scaleY: _this.scale,
// stroke: 'red',
left,
top,
selectable: true,
hasControls: true,
});
_this.newObj = new this.fabric.Group([imgInstance_l], {
left,
top,
selectable: true,
hasControls: true,
goalData: {
name,
status
},
})
// 修改完属性之后需要重新渲染
this.newObj.set({
selectable: true,
hasControls: true
})
canvas.renderAll()
fabric改变属性 改变之后不生效
最新推荐文章于 2024-07-11 11:45:34 发布
这篇博客详细介绍了如何使用JavaScript库fabric.js来处理图像,包括设置图像的缩放、位置、选择性和控制点,并且展示了如何创建和操作图像组对象,同时更新了对象属性并重新渲染画布,涉及前端开发中的交互与图形渲染技术。
摘要由CSDN通过智能技术生成