在生產環境中測試,無水印。
在任何需要的地方都能運行。
獲得 30 天的全功能產品。
在幾分鐘內上手運行。
試用產品期間完全訪問我們的支援工程團隊
C# 條碼庫
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 true)
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
在最近的現場會議中,Iron Software 團隊演示了如何使用 IronBarcode 生成和讀取多種條碼格式。 由我們的銷售工程師 Shadman Majid 與 Craig Beaumont(銷售主管)主講,本次會議涵蓋了從簡單的條碼生成到高級讀取使用案例的所有內容,展示了 IronBarcode 庫在真實世界應用中的快速和靈活性。
Shadman 以 IronBarcode 為例,展示了如何僅用幾行 C# 代碼就能輕鬆生成條形碼。 該工具支持多種條碼格式,使其能夠輕鬆自定義輸出為PNG或PDF。 這很適合需要快速和可靠的條碼生成的行業,從製造業到物流業。
在生成演示之後,Craig 接手了 IronBarcode 的條碼讀取功能。
這些功能使 IronBarcode 成為複雜自動化工作流程的理想選擇,特別是在文件可能包含多種類型的條碼或需要處理大量數據時。
Craig 也分享了一些 IronBarcode 已經產生影響的實際使用案例:
安全與身份驗證 - 使用條碼式身份證與訪問憑證驗證用戶。
Shadman 返回示範了 IronBarcode 如何即時處理單個和多個條碼讀取。
單一條碼讀取
條碼值
格式(例如,Aztec)
座標 (x, y 位置)
高度、寬度和編碼類型
使用IronBarcode,開發人員可以輕鬆地在包括桌面、網頁,甚至現在透過.NET MAUI的行動平台等多種格式和平台上生成和讀取條碼。 無論您是在建立倉庫追蹤系統還是零售收銀應用,IronBarcode 都提供了完成工作所需的靈活性和性能,使您能快速完成任務。
準備好試試嗎? 立即獲取30天免費試用。
PM > Install-Package BarCode
30天試用密鑰立即獲取。
15天試用金鑰 立即可用。
不需要信用卡
您的試用金鑰應已發送至您的電子郵件。
成功提交。
如果沒有收到,請聯絡
support@ironsoftware.com
免費開始
不需要信用卡
在生產環境中測試,無水印。
在任何需要的地方都能運行。
獲得 30 天的全功能產品。
在幾分鐘內上手運行。
試用產品期間完全訪問我們的支援工程團隊
預約30分鐘的個人演示。
無合約,無卡片信息,無承諾。
10 .NET API 產品適用於您的辦公文檔