在本教學中,我們將學習如何使用 FabricJS 來取得 IText 中字元的完整樣式宣告。 IText 類別是在 FabricJS 版本 1.4 中引入的,它擴展了 Fabric.Text 並用於建立 IText 實例。 IText 實例使我們可以自由選擇、剪下、貼上或新增文本,而無需額外配置。還有各種支援的按鍵組合和滑鼠/觸控組合使文字具有互動性,而 Text 中未提供這些組合。
然而,基於 IText 的 Textbox 允許我們調整文字矩形的大小並自動換行。對於 IText 來說並非如此,因為高度不會根據換行進行調整。我們可以透過使用各種屬性來操作 IText 物件。同樣,我們可以使用 getCompleteStyleDeclaration 方法來取得字元的完整樣式聲明。
getCompleteStyleDeclaraction(lineIndex: Number, charIndex: Number): Object
lineIndex - 此參數接受一個 Number ,它指定所需字元的行號。
charIndex - 此參數接受一個數字,表示該行上字元的位置。
使用 getCompleteStyleDeclaration 方法
讓我們來看一個程式碼範例,看看使用 getCompleteStyleDeclaration 方法時 IText 物件是什麼樣子。在這種情況下,我們將傳回第 0 行第二個字元的完整樣式聲明。該字元已被指派淺黃色文字背景色。
<!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 getCompleteStyleDeclaration method</h2> <p>You can open console from dev tools and see the style declaration for 2nd character of the first line</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 here.Lorem ipsum dolor sit ametconsectetur adipiscing elit.",{ width: 300, left: 60, top: 70, fill: "red", styles: { 0: { 1: { textBackgroundColor: "rgba(253,255,214,0.9)", }, }, }, } ); // Add it to the canvas canvas.add(itext); // Using getCompleteStyleDeclaration method console.log( "The style object is as follows: ", itext.getCompleteStyleDeclaration(0, 1) ); </script> </body> </html>
使用getCompleteStyleDeclaration方法進行比較
讓我們看一個程式碼範例,用於比較兩個不同行中同一索引處的兩個字元的樣式宣告。在本例中,我們選擇了第 1 行和第 2 行中的第二個字符,因此它們已使用不同的文字背景顏色突出顯示。由於我們為這兩個字元指定了不同的填充顏色、textBackgroundColor 和 fontSize,這些值將反映在我們的控制台中,我們將能夠比較這些變更。
<!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 getCompleteStyleDeclaration method for comparison</h2> <p>You can open console from dev tools and see the style declaration for both lines</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 here.Lorem ipsum dolor sit amet",{ width: 300, left: 60, top: 70, fill: "red", styles: { 0: { 1: { textBackgroundColor: "rgba(130,111,201,0.6)", fontSize: 30, fill: "black", }, }, 1: { 1: { textBackgroundColor: "rgba(52,235,189,0.5)", fontSize: 90, fill: "green", }, }, }, } ); // Add it to the canvas canvas.add(itext); // Using getCompleteStyleDeclaration method console.log( "The style object for 2nd character of 1st line is as follows: ", itext.getCompleteStyleDeclaration(0, 1) ); console.log( "The style object for 2nd character of 2nd line is as follows: ", itext.getCompleteStyleDeclaration(1, 1) ); </script> </body> </html>
以上是如何使用FabricJS取得IText中字元的完整樣式聲明?的詳細內容。更多資訊請關注PHP中文網其他相關文章!