javascript - Fabric.js: How to observe object:scaling event and update properties dynamically? - Stack Overflow

I'm trying to get the shape properties to dynamically update when the shape is being scaled.Here&#

I'm trying to get the shape properties to dynamically update when the shape is being scaled.

Here's a fiddle: /

The console log mands:

console.log('Width =  '+scaledObject.currentWidth);
console.log('Height = '+scaledObject.currentHeight);

are supposed to dynamically display the height and width of the shape as it is being scaled.

The properties remain the same in the console when the shape gets scaled. However, when I select the object again and scale it, the previous values of the properties are displayed.

Is there a way to make this dynamic?

I'm trying to get the shape properties to dynamically update when the shape is being scaled.

Here's a fiddle: http://jsfiddle/anirudhrantsandraves/DAjrp/

The console log mands:

console.log('Width =  '+scaledObject.currentWidth);
console.log('Height = '+scaledObject.currentHeight);

are supposed to dynamically display the height and width of the shape as it is being scaled.

The properties remain the same in the console when the shape gets scaled. However, when I select the object again and scale it, the previous values of the properties are displayed.

Is there a way to make this dynamic?

Share asked Feb 27, 2014 at 0:13 StAR_161StAR_161 6582 gold badges8 silver badges20 bronze badges 1
  • you need to use other events to track details dynamically.. – Dakshika Commented Feb 28, 2014 at 1:34
Add a ment  | 

2 Answers 2

Reset to default 13

getWidth() and getHeight() are used to get the current width and height in Fabric.js.

So in "object:scaling" event:

canvas.on('object:scaling', onObjectScaled);

function onObjectScaled(e)
{
    var scaledObject = e.target;
    console.log('Width =  '+scaledObject.getWidth());
    console.log('Height = '+scaledObject.getHeight());
}

will serve your purpose.

Updated fiddle — http://jsfiddle/DAjrp/2/

Just in case, if you wanted to get the scaled height

canvas.on("object:scaling", (e) => {
    canvas.getActiveObjects().forEach((o) => {
        // if it's scaled then just multiple the height by scaler
        const objHeight = o.scaleY ? o.height * o.scaleY : o.height;
        // ...
    });
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743596770a4476509.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信