ByteScout Data Extraction Suite - C# - Acquire barcode from scanner and decode with barcode reader sdk - ByteScout

ByteScout Data Extraction Suite – C# – Acquire barcode from scanner and decode with barcode reader sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Data Extraction Suite – C# – Acquire barcode from scanner and decode with barcode reader sdk

How to acquire barcode from scanner and decode with barcode reader sdk in C# with ByteScout Data Extraction Suite

Continuous learning is a crucial part of computer science and this tutorial shows how to acquire barcode from scanner and decode with barcode reader sdk in C#

Source code documentation samples give simple and easy method to install a needed feature into your application. Want to acquire barcode from scanner and decode with barcode reader sdk in your C# app? ByteScout Data Extraction Suite is designed for it. ByteScout Data Extraction Suite is the set that includes 3 SDK products for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK.

These C# code samples for C# guide developers to speed up coding of the application when using ByteScout Data Extraction Suite. Just copy and paste the code into your C# application’s code and follow the instructions. Enjoy writing a code with ready-to-use sample C# codes.

Our website gives trial version of ByteScout Data Extraction Suite for free. It also includes 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 System.IO; using System.Text; using System.Windows.Forms; using Bytescout.BarCodeReader; // This example demonstrates camera image acquiring using Windows Image Acquisition (WIA) interface. // BarCode Reader SDK has builtin WIAImageScanner class for WIA. // If you experienced issues with this example, please try another example located in /Visual Basic.NET/Read From Live Video Cam/ namespace BarcodeFromWebCam { static class Program { static void Main() { // Use WIAImageScanner image acquisition module WIAImageScanner wiaScanner = new WIAImageScanner(); wiaScanner.OutputFileNameTemplate = "BarCodeReader-scanned"; wiaScanner.OutputImageFormat = WiaImageFormatType.PNG; wiaScanner.ImageQuality = WiaImageBias.MaximizeQuality; wiaScanner.ImageIntent = WiaImageIntent.UnspecifiedIntent; wiaScanner.ShowDeviceSelectionDialog = true; try { // Run Acquire and exit if canceled or zero images if (!wiaScanner.Acquire()) return; } catch (Exception e) { string message = e.Message; if (e.InnerException != null) message = message + "\r\n\r\n" + e.InnerException.Message; MessageBox.Show("Failed acquiring images:\r\n\r\n" + message); return; } // Create barcode reader Reader reader = new Reader(); reader.RegistrationName = "demo"; reader.RegistrationKey = "demo"; // Enable decoding of ALL known barcode types. reader.BarcodeTypesToFind.All = true; // To speed up the processing and avoid false positives select specific barcodes type, // e.g. barcodeReader.BarcodeTypesToFind.PDF417 = True /* ----------------------------------------------------------------------- NOTE: We can read barcodes from specific page to increase performance . For sample please refer to "Decoding barcodes from PDF by pages" program. ----------------------------------------------------------------------- */ FoundBarcode[] barcodes = reader.ReadFrom(wiaScanner.OutputFiles[0]); if (barcodes.Length > 0) { StringBuilder builder = new StringBuilder(); foreach (FoundBarcode barcode in barcodes) builder.AppendLine(String.Format("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value)); MessageBox.Show(builder.ToString()); } else { MessageBox.Show(wiaScanner.OutputFiles[0] + "\r\n\r\nCould not find any barcode."); } // cleanup reader.Dispose(); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite 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 Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next