ByteScout Barcode Reader SDK - C# - Read 50 Barcodes from picture - ByteScout

ByteScout Barcode Reader SDK – C# – Read 50 Barcodes from picture

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Reader SDK – C# – Read 50 Barcodes from picture

How to read 50 barcodes from picture in C# using ByteScout BarCode Reader SDK

Step-by-step tutorial on how to read 50 barcodes from picture in C#

We made thousands of pre-made source code pieces for easy implementation in your own programming projects. ByteScout BarCode Reader SDK can read 50 barcodes from picture. It can be applied from C#. ByteScout BarCode Reader SDK is the barcode decoder with support for code 39, code 128, QR Code, Datamatrix, GS1, PDF417 and all other popular barcodes. Can read barcodes from images, pdf, tiff documents and live web camera. Supports noisy and damaged documents, can split and merge pdf and tiff documents based on barcodes. Can export barcode decoder results to XML, JSON, CSV and into custom data structures.

Want to quickly learn? This fast application programming interfaces of ByteScout BarCode Reader SDK for C# plus the guidelines and the code below will help you quickly learn how to read 50 barcodes from picture. Follow the instructions from scratch to work and copy the C# code. This basic programming language sample code for C# will do the whole work for you to read 50 barcodes from picture.

ByteScout provides the free trial version of ByteScout BarCode Reader SDK along with the documentation and source code samples.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using Bytescout.BarCodeReader; namespace Read50QRCodesBarcocesFromPicture { class Program { static void Main(string[] args) { try { // Create and activate Bytescout.BarCodeReader.Reader instance using (Reader reader = new Reader("demo", "demo")) { // Set barcode type to find reader.BarcodeTypesToFind.QRCode = true; /* ----------------------------------------------------------------------- NOTE: We can read barcodes from specific page to increase performance. For sample please refer to "Decoding barcodes from PDF by pages" program. ----------------------------------------------------------------------- */ // Read barcodes FoundBarcode[] barcodes = reader.ReadFrom("50_QrCodes.png"); foreach (FoundBarcode code in barcodes) Console.WriteLine("Found barcode value: '{1}'", code.Type, code.Value); } } catch (Exception ex) { Console.WriteLine(ex.Message); } Console.WriteLine(); Console.WriteLine("Press any key to exit..."); Console.ReadLine(); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout BarCode Reader SDK Home Page

Explore ByteScout BarCode Reader SDK Documentation

Explore Samples

Sign Up for ByteScout BarCode Reader SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout BarCode Reader SDK Home Page

Explore ByteScout BarCode Reader SDK Documentation

Explore Samples

Sign Up for ByteScout BarCode Reader SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next