- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
C# Barcode Reader & Scanner SDK Tutorial - Scan, read linear, 2d barcode images in C#.NET applicationReading & Scanning Linear, 2D Barcode Images in Visual C# .NET using C#.NET Barcode Reader
OnBarcode .NET Barcode Reader is a C#.NET component (dll) which reads and scans barcode images in Visual C# .NET applications. .NET Barcode Reader is 100% built on C# 2005, for reading & scanning Code 39, Code 128, GS1-128/EAN-128, Interleaved 2 of 5, UPC-A, UPC-E, EAN-8, EAN-13, and PDF-417 barcodes. C# Barcode Generators C# 2d barcode generators: QR Code Generator, PDF-417 Generator, Data Matrix Generator. C# linear barcode creators: Create Code 39, Create Code 128, Create EAN-8, Create EAN-13, Generate GS1-128, Generate ITF-14, Print UPC-A, Print UPC-E. C#.NET Barcode Reader Quick Start1. How to install .NET Barcode Reader component to your Visual C# .NET project?
Add OnBarcode.Barcode.BarcodeScanner.dll to C# project reference
2. How to scan & read linear barcodes in C# class?string[] barcodes = BarcodeScanner.Scan("code128-image.gif", BarcodeType.Code128); 3. To improve the reading speed, call ScanSingleBarcode, if there is maximum one barcode per image.string[] barcodes = BarcodeScanner.ScanSingleBarcode("code39-image.gif", BarcodeType.Code39); 4. To scan defined areas in the image in C#List<SRegion> areas = new List<SRegion>(); SRegion area = new SRegion(0, 0, 200, 300); areas.Add(area); string[] barcodes = BarcodeScanner.ScanRegions("code39image.gif", BarcodeType.Code39, areas); C# Barcode Reading & Scanning Tutorials:
|