如何將條碼導出為HTML

Hairil related to 如何將條碼導出為HTML
海里海西米·賓·奧馬
2023年5月8日
已更新 2024年12月17日
分享:
This article was translated from English: Does it need improvement?
Translated
View the article in English

一個優質的API輸出必須足夠靈活,使使用者能在其程式或應用程式中進一步使用,而不必必須保存在磁盤上。 這就是為什麼IronBarcode提供許多選項讓用戶將GeneratedBarcode導出為各種不同類型格式,其中之一是將生成的條碼導出為HTML

說到將GeneratedBarcode匯出到 HTML,可以作為數據 URLHTML 標籤HTML 文件。 在本文中,我們將討論如何匯出到每種格式。

開始使用 IronBarcode

立即在您的專案中使用IronBarcode,並享受免費試用。

第一步:
green arrow pointer

將條碼導出為數據 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)
$vbLabelText   $csharpLabel

從上面的程式碼片段開始,我們使用 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)
$vbLabelText   $csharpLabel

從上面的程式碼片段中,我們可以簡單地將 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")
$vbLabelText   $csharpLabel

此方法接受文件路徑的字串。 查看生成的 HTML 文件,我們可以看到條碼作為 HTML 標籤輸出在構成完整 HTML 文件的 、 和 標籤中。

Hairil related to 如何將條碼導出為HTML
海里海西米·賓·奧馬
軟體工程師
和所有優秀的工程師一樣,Hairil 是一位熱衷學習的人。他正在精進自己對 C#、Python 和 Java 的知識,利用這些知識為 Iron Software 團隊的成員創造價值。Hairil 從馬來西亞的馬來西亞工藝大學加入了 Iron Software 團隊,他在那裡獲得了化學和過程工程學士學位。