fabricjs - how can I unlock the aspect ratio 移除缩放比例固定
Just press the Shift key while scaling.
OR
You can adding this code:
canvas.uniScaleTransform = true;
EDIT:
the property is now called as of Fabric.js 4.0
canvas.uniformScaling = false;
Fabric.js 中如何解除缩放比例固定。两种方法:在缩放时按住 Shift 键,或设置`canvas.uniformScaling = false;`
Just press the Shift key while scaling.
OR
You can adding this code:
canvas.uniScaleTransform = true;
EDIT:
the property is now called as of Fabric.js 4.0
canvas.uniformScaling = false;