在本教程中,我們將學(xué)習(xí)如何使用 FabricJS 更改 IText 對(duì)象的 URL 字符串的格式。 IText 類是在 FabricJS 版本 1.4 中引入的,它擴(kuò)展了 Fabric.Text 并用于創(chuàng)建 IText 實(shí)例。 IText 實(shí)例使我們可以自由選擇、剪切、粘貼或添加新文本,而無需額外配置。還有各種支持的按鍵組合和鼠標(biāo)/觸摸組合使文本具有交互性,而 Text 中未提供這些組合。
然而,基于 IText 的 Textbox 允許我們調(diào)整文本矩形的大小并自動(dòng)換行。對(duì)于 IText 來說情況并非如此,因?yàn)楦叨炔粫?huì)根據(jù)換行進(jìn)行調(diào)整。我們可以通過使用各種屬性來操作 IText 對(duì)象。同樣,我們可以使用 format 屬性來更改 IText 對(duì)象的 URL 字符串的格式。
語法
toDataURL({ format: String }: Object): String
登錄后復(fù)制
參數(shù)
options(可選) – 此參數(shù)是一個(gè)對(duì)象,它為 IText 對(duì)象的 URL 表示形式提供額外的自定義。使用此參數(shù)可以更改高度、質(zhì)量、乘數(shù)和許多其他屬性,其中格式是屬性
選項(xiàng)鍵
format – 該屬性接受一個(gè)String值,它允許我們定義輸出圖像的格式。接受的值為“jpeg”或“png”。默認(rèn)值為“png”。
示例 1
不使用格式屬性的默認(rèn)值
讓我們看一個(gè)代碼示例,以查看使用 toDataURL 方法而不使用 format 屬性時(shí)記錄的輸出。一旦我們從開發(fā)工具打開控制臺(tái),我們就可以看到 IText 對(duì)象的 URL 表示。我們可以復(fù)制該 URL 并將其粘貼到新選項(xiàng)卡的地址欄中以查看最終輸出。由于我們沒有指定圖像的格式,因此它將根據(jù)設(shè)置的默認(rèn)值“png”。
<!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>Default value without using the format property</h2> <p> You can open console from dev tools and see that the URL representation of the IText object has a "png" format by default </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: 60, 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()); </script> </body> </html>
登錄后復(fù)制
示例 2
使用 toDataURL 方法和 format 屬性
讓我們看一個(gè)代碼示例,看看當(dāng) toDataURL 方法與 format 屬性一起使用時(shí),IText 對(duì)象是什么樣子。在這種情況下,我們將能夠指定最終圖像的格式。由于此處分配的值為“jpeg”,因此最終圖像將為“jpeg”格式。
<!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 toDataURL method along with format property</h2> <p> You can open console from dev tools and see that the URL representation of the IText object has a "jpeg" format now </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: 60, 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>
登錄后復(fù)制
以上就是如何使用FabricJS更改IText對(duì)象的URL字符串的格式?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!