在本教程中,我們將學習如何使用 FabricJS 設定 IText 物件的 URL 字串中的品質等級。 IText 類別是在 FabricJS 版本 1.4 中引入的,它擴展了 Fabric.Text 並用於建立 IText 實例。 IText 實例使我們可以自由選擇、剪下、貼上或新增文本,而無需額外配置。還有各種支援的按鍵組合和滑鼠/觸控組合使文字具有互動性,而 Text 中未提供這些組合。
然而,基於 IText 的 Textbox 允許我們調整文字矩形的大小並自動換行。對於 IText 來說並非如此,因為高度不會根據換行進行調整。我們可以透過使用各種屬性來操作 IText 物件。同樣,我們可以使用quality屬性在IText物件的URL字串中設定品質等級。
toDataURL({ quality: Number }: Object): String
options(可選) - 此參數是一個對象,它為 IText 物件的 URL 表示形式提供額外的自訂。使用此參數可以更改高度、品質、格式和許多其他屬性,其中品質是屬性。
quality - 此屬性接受一個 Number 值,表示最終輸出影像的品質等級。可接受的值介於 0 和 1 之間,不包括 0。0.1 表示品質最差,1 表示品質最好。此屬性只能用於 jpeg 格式。預設值為 1。
不使用品質屬性
#讓我們來看一個程式碼範例,看看不使用品質屬性時的輸出圖像。一旦我們從開發工具開啟控制台,我們就可以看到 IText 物件的 URL 表示。我們可以複製該 URL 並將其貼上到新分頁的網址列中以查看最終輸出。由於我們沒有使用quality屬性,因此將使用預設值,即1。
<!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>Without using the quality property</h2> <p>You can open console from dev tools and see the output URL. You can copy that and paste it in the address bar of a new tab to see the final image </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 shadow object var shadow = new fabric.Shadow({ blur: 25, color: "grey", offsetX: 12, offsetY: 15, }); // Initiate an itext object var itext = new fabric.IText( "Add sample text here.Lorem ipsum dolor sit amet consectetur adipiscing.",{ width: 300, left: 310, top: 70, fill: "#c70039", backgroundColor: "#c1dfed", stroke: "#c70039", originX: "center", shadow: shadow, } ); // Add it to the canvas canvas.add(itext); // Using the toDataURL method console.log(itext.toDataURL({ format: "jpeg" })); </script> </body> </html>
使用品質屬性
#讓我們來看一個程式碼範例,看看使用quality屬性時IText物件的最終輸出圖像是什麼樣子。在本例中,我們將值傳遞給它 0.1。因此最終影像的品質將變為最差。
<!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 quality property</h2> <p>You can open console from dev tools and see the output URL. You can copy that and paste it in the address bar of a new tab to see the final image </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 shadow object var shadow = new fabric.Shadow({ blur: 25, color: "grey", offsetX: 12, offsetY: 15, }); // Initiate an itext object var itext = new fabric.IText( "Add sample text here.Lorem ipsum dolor sit amet consectetur adipiscing.",{ width: 300, left: 310, top: 70, fill: "#c70039", backgroundColor: "#c1dfed", stroke: "#c70039", originX: "center", shadow: shadow, } ); // Add it to the canvas canvas.add(itext); // Using the toDataURL method console.log(itext.toDataURL({ format: "jpeg", quality: 0.1 })); </script> </body> </html>
以上是如何使用 FabricJS 設定 IText 物件的 URL 字串的品質等級?的詳細內容。更多資訊請關注PHP中文網其他相關文章!