C# Barcode Reader & Scanner SDK Tutorial - Scan, read linear, 2d barcode images in C#.NET application

Reading & 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 Start

1. 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:





OnBarcode is a market-leading provider of barcode generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides high quality tutorials and guides for various linear, 2d barcode information, such as C# Barcode, QR Code C#, QR Code VB.NET, QR Code ASP.NET, QR Code .NET, ASP.NET Barcode. OnBarcode products support most common barcode symbologies including QRCode C# SDK, Data Matrix in C#.net Control, PDF-417 Componennt in C# .NET, Code 128 VS .net sdk, Code 39 C# library.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.