在本教學中,我們將學習如何使用 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中文網其他相關文章!