如何使用 FabricJS 禁用文本的居中缩放?
在本教程中,我们将学习如何使用 FabricJS 禁用文本的居中缩放。我们可以通过添加 fabric.Text 实例来在画布上显示文本。它不仅允许我们移动、缩放和更改文本的尺寸,还提供其他功能,例如文本对齐、文本修饰、行高,这些功能可以通过 textAlign、underline 和 lineHeight 属性分别获得。当通过控件进行缩放时,为 centeredScaling 属性赋值 true 值,则使用中心作为对象的变换原点。
语法
new fabric.Text(text: String, { centeredScaling: Boolean }: Object)
参数
text − 此参数接受一个字符串,即我们要显示的文本字符串。
options (可选) − 此参数是一个对象,它为我们的文本提供额外的自定义选项。使用此参数可以更改与对象相关的许多属性,其中 centeredScaling 是一个属性,例如颜色、光标、笔划宽度等。
选项键
centeredScaling − 此属性接受一个布尔值,并允许我们控制对象是否应该使用其中心作为其变换原点。
示例 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>Passing centeredScaling as key and assigning a “true” value to it</h2> <p>Try scaling the text to see that centered scaling has been enabled</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a text object var text = new fabric.Text("Add Sample Text Here", { width: 200, top: 70, left: 50, centeredScaling: true, }); // Add it to the canvas canvas.add(text); </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>Disabling centeredScaling property</h2> <p> Try scaling the text to see that centered scaling has been disabled </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a text object var text = new fabric.Text("Add Sample Text Here", { width: 200, top: 70, left: 50, centeredScaling: false, }); // Add it to the canvas canvas.add(text); </script> </body> </html>
广告