如何將條碼導出為HTML
一個優質的API輸出必須足夠靈活,使使用者能在其程式或應用程式中進一步使用,而不必必須保存在磁盤上。 這就是為什麼IronBarcode提供許多選項讓用戶將GeneratedBarcode
導出為各種不同類型格式,其中之一是將生成的條碼導出為HTML。
說到將GeneratedBarcode
匯出到 HTML,可以作為數據 URL、HTML 標籤或HTML 文件。 在本文中,我們將討論如何匯出到每種格式。
如何在C# 中將條碼匯出為HTML
- 下載用於匯出條碼的 C# 庫
- 匯出條碼為資料URL
- 將條碼匯出為HTML標籤
- 將條碼匯出為 HTML 檔案
開始使用 IronBarcode
立即在您的專案中使用IronBarcode,並享受免費試用。
將條碼導出為數據 URL
在討論如何將條碼匯出為資料 URL 之前,我們需要先知道甚麼是資料 URL。 資料 URL,也稱為資料 URI,是一種類型的統一資源識別符 (URI),允許在 URL 字串中直接嵌入資料,就像是嵌入在網頁內的外部資源一樣。 這可以是任何格式,包括文本、圖像、音頻、視頻和二進位數據。 取得的資料 URL 之後可以在 HTML 中作為圖像標籤的 src
屬性使用。 以下是展示如何將我們的GeneratedBarcode
轉換為Data URL的代碼片段。
:path=/static-assets/barcode/content-code-examples/how-to/ExportBarcodeAsDataUrl.cs
using IronBarCode;
using System;
GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode);
var dataUrl = myBarcode.ToDataUrl();
Console.WriteLine(dataUrl);
Imports IronBarCode
Imports System
Private myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode)
Private dataUrl = myBarcode.ToDataUrl()
Console.WriteLine(dataUrl)
從上面的程式碼片段開始,我們使用 BarcodeWriter
類的 CreateBarcode()
方法創建了一個條碼,條碼值和條碼編碼作為此方法的參數。 為了獲取條碼的數據 URL,我們將ToDataUrl()
方法附加到GeneratedBarcode
上。
將條碼導出為 HTML 標籤
另一種將我們的GeneratedBarcode
匯出為HTML的方法是使用ToHtmlTag()
方法將其匯出到HTML標籤中。 此方法將 GeneratedBarcode
物件呈現為完整形式的 HTML 標籤,可以直接注入到 HTML 中,而不需要在 JavaScript、CSS 或圖像的相依項中引用它。 以下代碼片段演示如何導出為 HTML 標籤。
:path=/static-assets/barcode/content-code-examples/how-to/ExportBarcodeAsHtmlTag.cs
using IronBarCode;
using System;
GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode);
var htmlTag = myBarcode.ToHtmlTag();
Console.WriteLine(htmlTag);
Imports IronBarCode
Imports System
Private myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode)
Private htmlTag = myBarcode.ToHtmlTag()
Console.WriteLine(htmlTag)
從上面的程式碼片段中,我們可以簡單地將 ToHtmlTag()
方法附加到 GeneratedBarcode
以獲取生成的條碼的 HTML 標籤。 此 HTML 標籤可以直接嵌入到較大的 HTML 文件中。
將條碼導出為HTML文件
使用者也可以選擇將GeneratedBarcode
保存為HTML檔案。 要做到這一點,請使用SaveAsHtmlFile()
方法。 以下程式碼片段示範如何使用此方法。
:path=/static-assets/barcode/content-code-examples/how-to/ExportBarcodeAsHtmlFile.cs
using IronBarCode;
GeneratedBarcode myBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode);
myBarcode.SaveAsHtmlFile("myBarcode.html");
Imports IronBarCode
Private myBarcode As GeneratedBarcode = BarcodeWriter.CreateBarcode("https://ironsoftware.com/csharp/barcode/", BarcodeEncoding.QRCode)
myBarcode.SaveAsHtmlFile("myBarcode.html")
此方法接受文件路徑的字串。 查看生成的 HTML 文件,我們可以看到條碼作為 HTML 標籤輸出在構成完整 HTML 文件的 、
和 標籤中。