在本教程中,我们将学习如何使用 FabricJS 拉直 IText 对象。 IText 类是在 FabricJS 版本 1.4 中引入的,它扩展了 Fabric.Text 并用于创建 IText 实例。 IText 实例使我们可以自由选择、剪切、粘贴或添加新文本,而无需额外配置。还有各种支持的按键组合和鼠标/触摸组合使文本具有交互性,而 Text 中未提供这些组合。
然而,基于 IText 的 Textbox 允许我们调整文本矩形的大小并自动换行。对于 IText 来说情况并非如此,因为高度不会根据换行进行调整。我们可以通过使用各种属性来操作 IText 对象。同样,我们可以使用 Straighten 方法拉直 IText 对象。
straighten(): fabric.Object
在不使用 Straighten 方法的情况下向角度属性传递值
让我们看一个代码示例,看看不使用 Straighten 方法时 IText 对象的外观。 Straighten 方法通过将对象从当前角度旋转到 0、90、180 或 270 等角度来拉直对象,具体取决于更接近的角度。 angle 属性设置对象的旋转角度(以度为单位)。这里,我们将角度指定为 45 度。但是由于我们没有应用 Straighten 属性,因此旋转角度将保持为 45 度。
<!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 the angle property a value without using the straighten method</h2> <p>You can see that the itext object has an angle of 45 degrees</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 an itext object var itext = new fabric.IText("Add Sample Text HereLorem ipsum ", { width: 300, left: 210, top: 70, fontSize: 30, fill: "#b666d2", backgroundColor: "#f8f4ff", angle: 45, }); // Add it to the canvas canvas.add(itext); </script> </body> </html>
使用拉直方法
让我们看一个代码示例,看看当 Straighten 方法与 angle 属性结合使用时,IText 对象是什么样子。虽然我们将旋转角度设置为 45 度,但我们的 itext 对象将通过将其旋转回 0 度来拉直,因为我们使用了 Straighten 方法。
<!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>Using the straighten method</h2> <p>You can see that the angle of rotation is 0 degree for the itext object</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 an itext object var itext = new fabric.IText("Add Sample Text HereLorem ipsum ", { width: 300, left: 210, top: 70, fontSize: 30, fill: "#b666d2", backgroundColor: "#f8f4ff", angle: 45, }); // Add it to the canvas canvas.add(itext); // Using the straighten method itext.straighten(); </script> </body> </html>
以上是如何使用 FabricJS 拉直 IText 对象?的详细内容。更多信息请关注PHP中文网其他相关文章!