跳至頁尾內容
C# + VB.NET: 條碼快速入門 條碼快速入門
using IronBarCode;
using System.Drawing;

// Reading a barcode is easy with IronBarcode!
var resultFromFile = BarcodeReader.Read(@"file/barcode.png"); // From a file
var resultFromBitMap = BarcodeReader.Read(new Bitmap("barcode.bmp")); // From a bitmap
var resultFromImage = BarcodeReader.Read(Image.FromFile("barcode.jpg")); // From an image
var resultFromPdf = BarcodeReader.ReadPdf(@"file/mydocument.pdf"); // From PDF use ReadPdf

// To configure and fine-tune barcode reading, utilize the BarcodeReaderOptions class
var myOptionsExample = new BarcodeReaderOptions
{
    // Choose a reading speed from: Faster, Balanced, Detailed, ExtremeDetail
    // There is a tradeoff in performance as more detail is set
    Speed = ReadingSpeed.Balanced,

    // Reader will stop scanning once a single barcode is found (if set to false)
    ExpectMultipleBarcodes = true,

    // By default, all barcode formats are scanned for
    // Specifying a subset of barcode types to search for would improve performance
    ExpectBarcodeTypes = BarcodeEncoding.AllOneDimensional,

    // Utilize multiple threads to read barcodes from multiple images in parallel
    Multithreaded = true,

    // Maximum threads for parallelized barcode reading
    // Default is 4
    MaxParallelThreads = 2,

    // The area of each image frame in which to scan for barcodes
    // Specifying a crop area will significantly improve performance and avoid noisy parts of the image
    CropArea = new Rectangle(),

    // Special setting for Code39 barcodes
    // If a Code39 barcode is detected, try to read with both the base and extended ASCII character sets
    UseCode39ExtendedMode = true
};

// Read with the options applied
var results = BarcodeReader.Read("barcode.png", myOptionsExample);

// Create a barcode with one line of code
var myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.EAN8);

// After creating a barcode, we may choose to resize
myBarcode.ResizeTo(400, 100);

// Save our newly-created barcode as an image
myBarcode.SaveAsImage("EAN8.jpeg");

Image myBarcodeImage = myBarcode.Image; // Can be used as Image
Bitmap myBarcodeBitmap = myBarcode.ToBitmap(); // Can be used as Bitmap
NuGet Download
Install-Package BarCode

IronBarCode 支援多種標準格式,從映像檔(jpeg、png 和 jpg)到更適合程式化操作的格式(例如點陣圖),後者允許在程式中傳遞變數。此外,它還支援 PDF 等外部格式,使 IronBarCode 能夠無縫整合到任何程式碼庫中,並為開發人員提供處理文件格式和變數的靈活性。

除了可以讀取所有檔案格式的條碼外,IronBarcode 還可以作為條碼產生器,支援所有標準編碼和格式,例如EAN8Code128Code39 。 設定條碼產生器只需要兩行程式碼。 IronBarCode 的入門門檻低,並為開發人員提供了大量的自訂選項,是所有與條碼相關的場景的首選。

C# 中的條碼讀取器和條碼產生器

  1. var myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeEncoding.EAN8);
  2. Image myBarcodeImage = myBarcode.ToImage();
  3. myBarcode.ResizeTo(400,100);
  4. var resultFromFile = BarcodeReader.Read(@"file/barcode.png");
  5. var myOptionsExample = new BarcodeReaderOptions { /* Options */ };

條碼寫入器

我們首先導入必要的函式庫,如IronBarCodeSystem.Drawing ,並實例化BarcodeWriter來建立一個字串值為12345 、格式為EAN8的條碼。 然後我們將生成的條碼以所需格式儲存為圖像。 IronBarCode 支援將條碼建立為ImageBitmap ,因此有多種選擇。

進階條碼寫入器

如上所示,使用 IronBarCode 產生條碼只需要兩行程式碼,並將其儲存為檔案以供以後使用。 IronBarCode 進一步擴展了這項功能,為開發者提供了大量選項,可以根據具體情況自訂條碼。

我們可以使用ResizeTo方法,並傳入高度和寬度來調整條碼圖像的大小。

條碼閱讀器

與上述類似,我們首先實例化BarcodeReader ,將檔案路徑傳遞給Read方法,並將其儲存為變數以便稍後使用和操作條碼物件。 ReadPDF提供了讀取外部格式(例如 PDF)的指定方法; 但是,對於一般的影像格式和點陣圖,我們將使用Read

條碼讀取器選項

IronBarCode 允許開發人員掃描標準檔案格式的條碼。 然而,在某些情況下,開發人員希望微調Read方法的行為,尤其是在以程式設計方式讀取一批條碼檔案的情況下。 This is where BarcodeReaderOptions comes in. IronBarCode lets you fully customize things such as the speed at which it reads with Speed, whether multiple barcodes are expected in the file with ExpectedMultipleBarcodes, and what kind of barcodes they are with the property ExpectBarcodeTypes. 這允許開發人員執行多個線程,從多個影像中平行讀取 BarCode,以及在進行平行讀取時控制使用的線程數。

以上僅為IronBarCode強大功能的部分體現。 完整清單請參閱此處的文件。

透過我們的詳細指南學習如何建立條碼!

C# + VB.NET: 條碼缺陷和影像校正 條碼缺陷和影像校正
using IronBarCode;
using IronSoftware.Drawing;

// Choose which filters are to be applied (in order)
// Set cacheAtEachIteration = true to save the intermediate image data after each filter is applied
var filtersToApply = new ImageFilterCollection(cacheAtEachIteration: true) {
    new SharpenFilter(),
    new InvertFilter(),
    new ContrastFilter(),
    new BrightnessFilter(),
    new AdaptiveThresholdFilter(),
    new BinaryThresholdFilter(),
    new GaussianBlurFilter(),
    new MedianBlurFilter(),
    new BilateralFilter()
};

BarcodeReaderOptions myOptionsExample = new BarcodeReaderOptions()
{
    // Set chosen filters in BarcodeReaderOptions
    ImageFilters = filtersToApply,

    Speed = ReadingSpeed.Balanced,
    ExpectMultipleBarcodes = true,
};

// Read with the options applied
BarcodeResults results = BarcodeReader.Read("screenshot.png", myOptionsExample);

AnyBitmap[] filteredImages = results.FilterImages();

// Export intermediate image files to disk
for (int i = 0 ; i < filteredImages.Length ; i++)
    filteredImages[i].SaveAs($"{i}_barcode.png");

// Or
results.ExportFilterImagesToDisk("filter-result.jpg");
NuGet Download
Install-Package BarCode

IronBarcode 提供了許多影像預處理濾鏡供選擇,這些濾鏡可以輕鬆地在BarcodeReaderOptions中套用。 選擇可改善影像讀取的濾鏡,例如 SharpenBinary Threshold,以及 Contrast。 請記住,您選擇它們的順序是它們實際應用的順序。

可以選擇保存應用每個濾波器後的中間影像的影像資料。 這可以透過ImageFilterCollectionSaveAtEachIteration屬性來切換。

精選程式碼範例重點

  • 我們建立BarcodeReaderOptions實例,並為其配置各種影像濾鏡: SharpenBinary ThresholdContrast
  • 過濾器按特定順序添加,指示其應用順序。
  • 透過將cacheAtEachIteration設為true ,該程式庫會在每次應用濾鏡後保存中間影像,這對於偵錯和分析非常有用。 最後,我們從圖像中讀取條碼,並將條碼類型和值列印到控制台。

了解更多關於IronBarcode的影像校正信息

C# + VB.NET: 建立條碼圖像 建立條碼圖像
using IronBarCode;
using System.Drawing;

/*** CREATING BARCODE IMAGES ***/

// Create and save a barcode in a single line of code
BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.EAN8).ResizeTo(400, 100).SaveAsImage("EAN8.jpeg");

/*****  IN-DEPTH BARCODE CREATION OPTIONS *****/

// BarcodeWriter.CreateBarcode creates a GeneratedBarcode which can be styled and exported as an Image object or file
GeneratedBarcode MyBarCode = BarcodeWriter.CreateBarcode("Any Number, String or Binary Value", BarcodeWriterEncoding.Code128);

// Style the Barcode in a fluent LINQ-style fashion
MyBarCode.ResizeTo(300, 150).SetMargins(20).AddAnnotationTextAboveBarcode("Example EAN8 Barcode").AddBarcodeValueTextBelowBarcode();
MyBarCode.ChangeBackgroundColor(Color.LightGoldenrodYellow);

// Save the barcode as an image file
MyBarCode.SaveAsImage("MyBarCode.png");
MyBarCode.SaveAsGif("MyBarCode.gif");
MyBarCode.SaveAsHtmlFile("MyBarCode.html");
MyBarCode.SaveAsJpeg("MyBarCode.jpg");
MyBarCode.SaveAsPdf("MyBarCode.Pdf");
MyBarCode.SaveAsPng("MyBarCode.png");
MyBarCode.SaveAsTiff("MyBarCode.tiff");
MyBarCode.SaveAsWindowsBitmap("MyBarCode.bmp");

// Save the barcode as a .NET native object
Image MyBarCodeImage = MyBarCode.Image;
Bitmap MyBarCodeBitmap = MyBarCode.ToBitmap();

byte[] PngBytes = MyBarCode.ToPngBinaryData();

using (System.IO.Stream PdfStream = MyBarCode.ToPdfStream())
{
    // Stream barcode image output also works for GIF, JPEG, PDF, PNG, BMP and TIFF
}

// Save MyBarCode as an HTML file or tag
MyBarCode.SaveAsHtmlFile("MyBarCode.Html");
string ImgTagForHTML = MyBarCode.ToHtmlTag();
string DataURL = MyBarCode.ToDataUrl();

// Save MyBarCode to a new PDF, or stamp it in any position on any page(s) of an existing document
MyBarCode.SaveAsPdf("MyBarCode.Pdf");
MyBarCode.StampToExistingPdfPage("ExistingPDF.pdf", 200, 50, 1);  // Position (200, 50) on page 1
MyBarCode.StampToExistingPdfPages("ExistingPDF.pdf", 200, 50, new[] { 1, 2, 3 }, "Password123");  // Multiple pages of an encrypted PDF
NuGet Download
Install-Package BarCode

在這個例子中,我們可以看到可以建立、調整大小和保存多種不同類型和格式的條碼; 甚至可能只需要一行程式碼。

利用我們流暢的 API,產生的條碼類別可用於設定邊距、調整大小和註解條碼。 然後,它們可以儲存為影像,IronBarcode 會自動根據檔案名稱假定正確的影像類型: GIF、HTML 檔案、HTML 標籤、JPEG、PDF、PNG、TIFF 和 Windows 位圖

We also have the StampToExistingPdfPage method, which allows a barcode to be generated and stamped onto an existing PDF. 在編輯通用 PDF 文件或透過條碼向文件添加內部識別號碼時,此功能非常有用。

C# + VB.NET: 條碼樣式和註釋 條碼樣式和註釋
using IronBarCode;
using System;
using System.Drawing;

/*** STYLING GENERATED BARCODES  ***/

// BarcodeWriter.CreateBarcode creates a GeneratedBarcode object which allows the barcode to be styled and annotated.
GeneratedBarcode MyBarCode = BarcodeWriter.CreateBarcode("Iron Software", BarcodeWriterEncoding.QRCode);

// Any text (or commonly, the value of the barcode) can be added to the image in a default or specified font.
// Text positions are automatically centered, above or below. Fonts that are too large for a given image are automatically scaled down.
MyBarCode.AddBarcodeValueTextBelowBarcode();
MyBarCode.AddAnnotationTextAboveBarcode("This is My Barcode", new Font(new FontFamily("Arial"), 12, FontStyle.Regular, GraphicsUnit.Pixel), Color.DarkSlateBlue);

// Resize, add margins and check final image dimensions
MyBarCode.ResizeTo(300, 300); // Resize in pixels
MyBarCode.SetMargins(0, 20, 0, 20); // Set margins in pixels

int FinalWidth = MyBarCode.Width;
int FinalHeight = MyBarCode.Height;

// Recolor the barcode and its background
MyBarCode.ChangeBackgroundColor(Color.LightGray);
MyBarCode.ChangeBarCodeColor(Color.DarkSlateBlue);
if (!MyBarCode.Verify())
{
    Console.WriteLine("Color contrast should be at least 50% or a barcode may become unreadable. Test using GeneratedBarcode.Verify()");
}

// Finally, save the result
MyBarCode.SaveAsHtmlFile("StyledBarcode.html");

/*** STYLING BARCODES IN A SINGLE LINQ-STYLE EXPRESSION ***/

// Create a barcode in one line of code
BarcodeWriter.CreateBarcode("https://ironsoftware.com", BarcodeWriterEncoding.Aztec).ResizeTo(250, 250).SetMargins(10).AddBarcodeValueTextAboveBarcode().SaveAsImage("StyledBarcode.png");

/*** STYLING QR CODES WITH LOGO IMAGES OR BRANDING ***/

// Use the QRCodeWriter.CreateQrCodeWithLogo Method instead of BarcodeWriter.CreateBarcode
// Logo will automatically be sized appropriately and snapped to the QR grid.

var qrCodeLogo = new QRCodeLogo("ironsoftware_logo.png");
GeneratedBarcode myQRCodeWithLogo = QRCodeWriter.CreateQrCodeWithLogo("https://ironsoftware.com/", qrCodeLogo);
myQRCodeWithLogo.ResizeTo(500, 500).SetMargins(10).ChangeBarCodeColor(Color.DarkGreen);
myQRCodeWithLogo.ResizeTo(500, 500).SetMargins(10).ChangeBarCodeColor(Color.DarkGreen);
myQRCodeWithLogo.SaveAsPng("QRWithLogo.Png").SaveAsPdf("MyVerifiedQR.html"); // Save as 2 different formats
NuGet Download
Install-Package BarCode

在這個範例中,我們可以看到,條碼可以使用您選擇的文字或條碼本身的值進行註釋,並且可以使用目標電腦上已安裝的任何字型。如果目標電腦上沒有所需的字體,系統將選擇合適的類似字體。 條碼可以調整大小,可以添加邊距,條碼和背景都可以重新著色。 然後可以將它們儲存為合適的格式。

在最後幾行程式碼中,您可以看到,使用我們流暢的樣式運算符,只需幾行程式碼即可建立和設定條碼樣式,類似於System.Linq

C# + VB.NET: 將條碼匯出為 HTML 將條碼匯出為 HTML
using IronBarCode;

GeneratedBarcode MyBarCode = BarcodeWriter.CreateBarcode("1234567890", BarcodeWriterEncoding.Code128);

// Save as a stand-alone HTML file without any image assets
MyBarCode.SaveAsHtmlFile("MyBarCode.html");

// Save as a stand-alone HTML image tag which can be served in HTML files, ASPX or MVC Views. No image assets required, the tag embeds the entire image in its source content
string ImgTag = MyBarCode.ToHtmlTag();

// Turn the image into a HTML/CSS Data URI.
string DataURI = MyBarCode.ToDataUrl();
NuGet Download
Install-Package BarCode

IronBarcode 有一個非常有用的功能,可以將條碼匯出為獨立的 HTML,這樣它就沒有關聯的圖像資源。 所有內容都包含在HTML檔案中。

我們可以將內容匯出為HTML 檔案HTML 圖片標籤資料 URI

在這個範例中

  • 我們使用BarcodeWriter.CreateBarcode來建立條碼,指定輸入資料和編碼類型。
  • 然後,我們使用 IronBarcode 提供的不同方法輸出條碼:
  • ToHtmlTag()產生 HTML<img>可嵌入網頁的標籤。
  • ToDataUri()建立一個資料 URI 字串,該字串可用作資料來源<img>標籤或幾乎任何需要圖片 URL 的地方。
  • SaveAsHtmlFile()將條碼保存為獨立的 HTML 文件,其中包含所有圖像數據,使其便於攜帶和共享。

Human Support related to .NET 條碼庫

來自我們開發團隊的直接人工支援

無論是產品、整合或授權方面的問題,Iron 產品開發團隊都隨時準備為您解答。聯絡我們,與 Iron 展開對話,充分利用我們的庫資源,協助您的專案取得成功。

提問
Recognizes Barcode Qr related to .NET 條碼庫

在 .NET Core、.NET Standard 和 .NET Framework 中識別一維和二維條碼

IronBarcode .NET 條碼庫可以讀取 BarcodeEncoding 枚舉中任何類型的條碼。它能夠識別 .NET Core、.NET Standard 和 .NET Framework 中的條碼。

為了節省時間並提高庫存工作流程的效率,IronBarcode 建議使用一維 (1D) 或線性條碼,包括傳統的條碼類型,例如 UPC 和 EAN 條碼。全球各地的銷售點通常使用 UPC(通用產品代碼)條碼(包括其變體 UPC-A 和 UPC-E)。這使得目標消費者能夠更輕鬆地在倉庫和收銀台識別和追蹤產品特徵。 UPC-A 條碼僅支援 12 至 13 位數字,而 UPC-E 條碼則支援 8 至 13 位數字。

與UPC類似,歐洲市場也使用EAN條碼來標記消費品,以便在銷售點進行掃描。 EAN條碼的預設版本是EAN-13,而EAN-8則用於包裝空間有限的商品,例如糖果。 EAN-13作為一種高密度條碼,除了具有靈活性之外,還能以緊湊的方式編碼更大的資料集。

一維條碼的應用遠不止於此。

汽車和國防工業使用 Code 39 條碼。其名稱表明它能夠編碼 39 個字元(現已修訂為 43 個)。同樣,Code 128 條碼集也具有高資料密度。在物流領域,包裝產業由於 ITF(交錯式 2/5 條碼)條碼具有較高的印刷容差,因此更傾向於使用 ITF 條碼來標記瓦楞紙板等包裝材料。而 MSI 條碼則更適用於產品識別和庫存管理。

製藥業使用醫藥二進位碼(Pharmaceutical Binary Code)。而RSS 14(精簡空間符號)和Databar條碼則是1D和2D條碼的混合體,是醫療保健產業標記小型物品的常用條碼。與Code 128條碼類似,Codabar條碼也是物流和醫療保健產業的常用條碼。它無需電腦即可工作,可透過點陣印表機輸出讀取。

二維條碼包括 Aztec、Data Matrix、Data Bar、IntelligentMail、Maxicode 和 QR 碼。 Aztec 條碼應用於不同行業,例如在交通運輸行業,它常用於車票和登機證,即使在低解析度下也能清晰讀取。 IntelligentMail 條碼則主要用於美國郵政,而 Maxicode 條碼則用於標準化貨物追蹤。

條碼中最廣為人知的是二維碼。由於其靈活性、容錯性、可讀性以及對各種數據(如數字、字母數字、字節/二進制和漢字)的支持,二維碼在從企業對企業 (B2B) 到企業對消費者 (B2C) 的廣泛應用方面都發揮著重要作用。

一旦類型確定,領先的條碼產生器 IronBarcode 就會接手後續工作!

查看完整功能列表
Fast And Polite Behavior related to .NET 條碼庫

使用 .NET 條碼閱讀器開始您的條碼產生和讀取項目

借助 IronBarcode 功能全面、先進且有效率的程式庫,在 .NET 中讀取條碼類型現在變得輕而易舉。

從哪裡開始呢?

安裝 IronBarcode 的 NuGet 套件,或手動將 DLL 檔案安裝到您的專案或全域組件快取中。現在,您離用一行程式碼編寫一個 C# 條碼影像掃描器應用程式又更近了一步。提取條碼圖像、值、編碼類型、二進位資料(如有),然後將所有內容輸出到控制台。

TryHarder - 對傾斜條碼格式進行更深層的掃描

將 IronBarcode 的 TryHarder 變數新增至 QuicklyReadOneBarcode 方法中,可以讓應用程式更努力地嘗試分析模糊、傾斜或損壞的二維碼影像格式,雖然這會消耗更多時間,但會更加徹底。

您可以指定多種格式。

您可以指定要尋找的條碼編碼,或指定多種格式 - IronBarcode 為您提供無限的條碼分析工具。

您可以提高條碼讀取效能和準確性。您可以使用垂直線字元或「位元對或」同時指定多種條碼格式。或者,使用 BarcodeReader.ReadASingleBarcode 方法可以獲得更高的精確度和品質。

從 PDF 文件、掃描件到多線程讀取條碼

如果你的下一個專案是讀取掃描的 PDF 文件並找到所有一維條碼,IronBarcode 絕對不會讓你失望。它類似於從單一文件中讀取單一條碼,只不過現在還能取得條碼所屬的頁碼資訊。

同樣,多幀TIFF檔案也能達到相同的效果。在這方面,它的處理方式與PDF文件類似。

多執行緒處理是否帶給您困擾?如果是的話,IronBarcode 支援多執行緒處理!

若要讀取多個文檔,您可以使用 IronBarcode 來獲得更佳的讀取效果。您可以建立一個文件列表,然後使用 `BarcodeReader.ReadBarcodesMultithreaded` 方法。該方法利用多個線程,並可能使用所有 CPU 核心進行條碼掃描,速度比一次讀取一個條碼快得多。

有了完美條碼產生器,再也不用擔心影像不完美了。

在實際應用中,使用者可能需要掃描非完美截圖、PNG 圖片或照片形式的條碼。傳統的開源 .NET 條碼產生器和讀取器庫通常無法讀取任何不夠完美的圖像格式。然而,IronBarcode 讓這一切變得異常簡單。

QuicklyReadOneBarcode 的 TryHarder 方法會導致 IronBarcode 出現傾斜,並讀取不完美數位樣本中的條碼。

照片、掃描件和縮圖

如果照片出現傾斜,請設定特定的條碼旋轉和影像校正,以校正手機相機可能出現的數位雜訊、傾斜、透視和旋轉等問題。

同樣,從掃描的PDF檔案中讀取二維碼和PDF-417條碼時,需要設定適當的條碼旋轉校正和條碼影像校正級別,以輕微清理文件。但是,應謹慎操作,避免過度設定而影響性能。

如果條碼縮圖損壞,IronBarcode 閱讀器方法會自動偵測過小的條碼影像,並放大影像,清除與縮圖相關的所有數位噪聲,使其再次可讀。

對於開發者來說,事情再簡單不過了!

了解更多
Built For Dot Net related to .NET 條碼庫

專為在 .NET Core 專案中輕鬆使用而構建

只需幾行程式碼,即可在幾分鐘內快速上手。該軟體專為 .NET Core、.NET Standard 和 .NET Framework 構建,是一個易於使用的單一 DLL 檔案;無依賴項;支援 32 位元和 64 位元;支援任何 .NET 語言。可用於 Web、雲端、桌面或控制台應用程式;支援行動和桌面裝置。您可以點擊此連結下載該軟體產品。

專為.NET構建, C#, QR 圖碼

立即開始
Write Barcodes related to .NET 條碼庫

IronBarcode 總結——用於建立和操作條碼圖像

IronBarcode 可以輕鬆建立、調整大小和保存各種條碼類型和格式,所以沒有理由不立即開始使用它!

借助 Fluent API,可以使用產生的條碼類別來設定邊距、調整大小和新增註解。然後,將條碼儲存為映像,IronOCR 會根據檔案名稱自動識別正確的映像類型,無論是 GIF、HTML 檔案、HTML 標籤、JPEG、PNG、TIFF 或 Windows 位圖。

StampToExistingPdfPage 方法允許產生條碼並將其新增至現有 PDF 檔案中。這在編輯通用 PDF 文件或透過條碼向文件添加內部識別碼時非常有用。

立即聯絡我們,享受全天候24小時真人客服支援。無論您有任何疑問還是需要專案支持,都可以先使用我們的30天免費試用密鑰,或訪問我們內容豐富的簡明易懂的英文文檔資源,也可以選擇我們的終身授權方案,價格從749美元起。

了解更多
支持:
  • .NET Core 2.0 及更高版本
  • .NET Framework 4.0 及更高版本支援 C#、VB 和 F#
  • Microsoft Visual Studio .NET 開發 IDE 圖示
  • Visual Studio 的 NuGet 安裝程式支持
  • JetBrains ReSharper C# 語言助理相容
  • 相容於 Microsoft Azure C# .NET 託管平台

授權與定價

免費提供社區發展許可。商業許可證起價749美元。

C# + VB.NET 專案庫許可

專案

開發人員 C# + VB.NET 函式庫許可

開發者

組織 C# + VB.NET 函式庫許可

組織

代理 C# + VB.NET 庫許可

機構

SaaS C# + VB.NET 函式庫許可

SaaS

OEM C# + VB.NET 函式庫許可

原廠設備製造商

查看完整授權選項  

C# 和 VB.NET 條碼和二維碼教程

教學 + 程式碼範例:使用 C# 讀取條碼 | .NET 教學課程

C# 。網 條碼 QR 圖碼

Frank Walker .NET 產品開發人員

讀取條碼與二維碼 | C# VB .NET 教學課程

看看 Frank 如何在他的 C# .NET 條碼應用程式中使用 IronBarcode 讀取掃描件、照片和 PDF 文件中的條碼…

查看弗蘭克的條碼讀取教程
條碼編寫教學 + C# 和 VB.NET 程式碼範例

C# 。網 條碼

Francesca Miller,初級.NET工程師

使用 C# 或 VB.NET 產生條碼圖像

Francesca 分享了一些在 C# 或 VB 應用程式中將條碼寫入圖像的技巧和訣竅。了解如何使用 IronBarcode 編寫條碼以及所有可用的選項…

請參閱 Francesca 的條碼教學
VB.NET PDF 建立與編輯教學 + 程式碼範例 | VB.NET 與 ASP.NET PDF

QR 圖碼 。網 C# VB

Jennifer Wright 應用架構主管

C# 和 VB .NET 應用程式中編寫二維碼的教學課程

Jenny 的團隊使用 IronBarcode 每天產生數千個二維碼。請觀看他們的教學課程,了解如何充分利用 IronBarcode…

Jenny團隊的二維碼編寫教學
數千名開發者使用 IronBarcode 來…

會計和財務系統

  • # 收據
  • # 報告
  • # 發票列印
為 ASP.NET 會計和財務系統新增 PDF 支持

商業數位化

  • # 文件
  • # 訂購及貼標籤
  • # 紙張替代品
C# 業務數位化用例

企業內容管理

  • # 內容製作
  • # 文件管理
  • # 內容散佈
.NET CMS PDF 支持

數據和報告應用程式

  • # 績效追蹤
  • # 趨勢圖
  • # 報告
C# PDF 報表
Iron Software Enterprise .NET 元件開發人員

成千上萬的企業、政府機構、中小企業和開發人員都信賴 Iron 軟體產品。

Iron 團隊在 .NET 軟體組件市場擁有超過 10 年的經驗。

鐵客戶圖標
鐵客戶圖標
鐵客戶圖標
鐵客戶圖標
鐵客戶圖標
鐵客戶圖標
鐵客戶圖標
鐵客戶圖標