如何使用 FabricJS 禁用椭圆的居中缩放?
在本教程中,我们将学习如何使用 FabricJS 禁用居中缩放椭圆。椭圆是 FabricJS 提供的各种形状之一。为了创建椭圆,我们将不得不创建一个fabric.Ellipse类的实例并将其添加到画布上。当通过控件进行缩放时,将“true”值赋予centeredScaling属性,会使用中心作为对象的变换原点。
语法
new fabric.Ellipse({ centeredScaling: Boolean }: Object)
参数
options (可选) - 此参数是一个对象,它为我们的椭圆提供了额外的自定义。使用此参数,可以更改与对象相关的颜色、光标、笔触宽度和许多其他属性,其中centeredScaling是一个属性。
选项键
centeredScaling - 此属性接受一个布尔值。当此属性为True时,对象使用中心作为其变换原点。
示例 1
将centeredScaling作为键并为其分配“true”值
以下示例演示了当启用centeredScaling属性时椭圆对象的行为。当我们将对象放大时,变换原点是椭圆的中心。
<!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>How to disable the centered scaling of Ellipse using FabricJS?</h2> <p>Select the object and stretch it from its corners. The ellipse will scale up from its center. This is the default behavior.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 215, top: 100, fill: "white", rx: 90, ry: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", centeredScaling: true, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
示例 2
禁用 centeredScaling 属性
我们可以通过为其分配“false”值来禁用centeredScaling属性。这将不再使用椭圆的中心作为变换中心。以下是一段代码,用于演示这一点 -
<!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>How to disable the centered scaling of Ellipse using FabricJS?</h2> <p>Select the object and stretch it from its corners. You will notice the object scales up but not from its center because we have set <b>centeredScaling</b> as False. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 215, top: 100, fill: "", rx: 90, ry: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", centeredScaling: false, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
广告