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
ByteScout Barcode Reader SDK - Delphi - Console Read From Subfolder Project1.dpr   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C++ (Unmanaged) - Read From Memory ReadFromMemory.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C++ (Unmanaged) - General Example CommonExample.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C++ (Managed) - General Example CommonExample.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C# - WPF UI Example App.xaml.cs MainWindow.xaml.cs using System; using System.Text; using System.Windows; using System.Windows.Input; using System.Windows.Media.Imaging; using Bytescout.BarCodeReader; namespace ReadBarcodeFromImage { public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } // Select image file private void btnBrowse_Click(object sender, RoutedEventArgs e) { Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog { Filter = "Supported formats (*.bmp;*.gif;*.tif;*.png;*.jpg;*.pdf)|*.bmp;*.gif;*.tif;*.tiff;*.png;*.jpg;*.jpeg;*.pdf|All Files|*.*" }; if (dlg.ShowDialog() == true) { tbFileName.Text = dlg.FileName; tbFoundBarcodes.Text = ""; imageContainer.Source [...]
ByteScout Barcode Reader SDK - C# - Split Document By Found Barcode Program.cs   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C# - Read From Live Video Cam (WPF) App.xaml.cs VideoScanForm.xaml.cs
ByteScout Barcode Reader SDK - C# - Read From Live Video Cam MainForm.cs Program.cs How to Read Barcodes from Live Video Cam using ByteScout Barcode Reader SDK In this tutorial, I'm going to show you how to read a barcode from a live video camera with ByteScout barcode reader SDK using C#. First, you need to add a reference. To do that right-click references, then click Add Reference, Search for Bytescout barcode reader SDK and [...]
ByteScout Barcode Reader SDK - C# - Profiles Program.cs   Click here to get your Free Trial version of the SDK
ByteScout Barcode Reader SDK - C# - Parallel Decoding Program.cs using System; using System.IO; using System.Threading; using Bytescout.BarCodeReader; namespace ParallelDecoding { class Program { const string InputFile = @".\example.pdf"; // Limit to 4 threads in queue. // Set this value to number of your processor cores for max performance. private static readonly Semaphore ThreadLimiter = new Semaphore(4, 4); static void Main() { const int numberOfRuns = 10; ManualResetEvent[] doneEvents = new ManualResetEvent[numberOfRuns]; for (int i [...]