Barcode Reader SDK Info and Code Samples - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

BarCode Reader SDK

  • Home
  • /
  • BarCode Reader SDK
Getting started with barcode reading functionality with Visual C# and BarCode Reader SDK for .NETSample input image for barcode recognition: Running sample barcode decoding application:using System; using System.Collections.Generic; using System.Text; using System.IO;using Bytescout.BarCodeReader;namespace SimpleTestSharp { class Program { const string path = "..\..\BarcodePhoto.jpg";static void Main(string[] args) { Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(path));Reader bc = new Reader(); FoundBarcode[] barcodes = bc.ReadFrom(path);foreach (FoundBarcode barcode in barcodes) Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value);Console.WriteLine("Press [...]
The tutorial demonstrates how to read barcode from image using BarCode Reader SDK in ASP.NET applicationsThe following sample demonstrates how to decode barcode from photo image using Bytescout BarCode Reader SDK for .NETCreate new ASP.NET project and add the following control into Default.aspx page: 1) Image control named Image1 and 2) Listbox control named ListBox1;Sample input image for barcode recognition: Output (ASP.NET barcode decoding application in browser): 1) Visual Basic in ASP.NETDefault.aspx:<%@ Page Language="vb" AutoEventWireup="false" [...]
The following sample code demonstrates how to read barcode from image (BarcodePhoto.jpg file) in ASP Classic using Bytescout BarCode Reader SDK for .NETSample input image for barcode recognition:
Decode barcodes (Codabar, Code39, Code128, EAN2, EAN5, EAN8, EAN13, Interleaved2of5, GS1, UPCA, UPCE) from images files (BMP, JPG, PNG, TIF, GIF) directly from command line. Console version (Bytescout.BarCodeReader.Console.exe) is included with the latest versions of Bytescout BarCode Reader SDK for barcode image recognition directly from command line. Usage: Bytescout.BarCodeReader.Console.exe <filename> <parameters...> <filename> Input document of one of following formats: JPEG, PNG, BMP, GIF, TIFF. Wildcards are supported. Command line interface parameters: /N:<regname> BarCode Reader SDK [...]
How to upload PDF in ASP.NET and then read barcodes from uploaded PDF using Bytescout BarCode Reader SDK for .NET and ASP.NET Reading barcode values from PDF documents is one of the common development requirements. ByteScout Barcode Reader SDK is an AI-based exceptional easy to use SDK with wide ranges of support for almost all barcode types. In this article, we'll observe reading barcodes values from PDF input file with Barcode Reader SDK in ASP.NET [...]
Barcode Reader SDK reads barcodes from scanned documents, PDFs, images, or webcam. Key Benefits Integrate barcode reading from PDF, JPG, PNG, TIFF images, and PDF into your applications in just a few minutes; Battle-tested on millions of barcodes, PDFs, and images; Works offline, no Internet connection required; All popular barcode types: linear barcodes: from Code 39, Code 128, EAN, UPC to GS1, EAN 13, and many others 2d barcodes: QR Code, Micro QR, Datamatrix, PDF417 [...]