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
Barcode aus PDF lesen mit Bytescout Barcode Reader SDK. Verwenden Sie folgenden C# und VB.NET Quellcodes um Barcodes aus PDF-Dateien zu lesen. C# Visual Basic .NET
To view the documentation for the SDK go to Start > All Programs > Bytescout BarCode Reader SDK and click the "Documentation" link. The SDK comes with lot of ready-to-use source code examples for Visual Basic, C#, ASP.NET, VB6, VBScript, classic ASP. To find source code samples, please go to "My Documents" folder, "ByteScout Samples" and "BarCode Reader SDK". Do not hesitate to copy and paste code snippets from samples right into your application! The [...]
BarCode Reader SDK and BarCode Reader free utility are capable of reading 1D and 2D barcodes from images fetched from a scanner or a web camera device.DEVELOPERS: To load image from web-camera or scanner device into BarCode Reader SDK please use freeware Scan SDK (visit this page for free download). Scroll to the end of this tutorial to see ready-to-use source code snippets.You can test how it works with BarCode Reader utility included into BarCode [...]
This sample demonstrates how to read barcode from PDF using BarCode Reader SDK in Visual C# and Visual Basic .NET and ASP.NETYou can find the full source code of this sample in ExamplesAdvanced ExamplesAdvancedBarcodes From PDF folder of Bytescout BarCode Reader SDK installation.Visual Basic .NET (VB.NET) Visual C# .NET (C# .NET)
This sample demonstrates how to use BarCode Reader SDK for CF .NET 2.00 or higher for barcode decoding in Windows CE projectThis sample has been included into trial version of the library and provides a simple GUI forms application to select image file to read barcode fromHint: to copy image files into the device use File | "Configure.." menu in Windows CE emulator and set shared folder to the folder on your desktop computer. This [...]
The following sample demonstrates how to read barcode from photo image (BarcodeImage.jpg file) in Visual Basic.NET using Bytescout BarCode Reader SDK for .NETSample input image for barcode recognition: Running sample barcode reading application:Imports System.IOImports Bytescout.BarCodeReaderModule Module1Sub Main() Dim pat As String = "....BarcodePhoto.jpg" Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(pat))Dim bc As New Reader() Dim barcodes As FoundBarcode() = bc.ReadFrom(pat)Dim i As Integer For i = 0 To barcodes.Length - 1 Console.WriteLine("Found barcode with type '{0}' [...]
The following sample demonstrates how to read barcode from photo image (BarcodePhoto.jpg file) in Visual Basic 6 using Bytescout BarCode Reader SDK for .NET Sample input image for barcode recognition:
The following sample demonstrates how to read barcode from photo image (BarcodePhoto.jpg file) in VBScript using Bytescout BarCode Reader SDK for .NETSample input image for barcode recognition: Running sample barcode decoding application:
Bytescout BarCode Reader SDK provides support for .NET Framework 2.00 (desktop and ASP.NET server) and Compact Framework .NET 2.00 for Pocket PC and Windows CE / WinMobileThis sample including full source code for the Pocket PC 2003 project is available in trial version of the SDKHint: to copy image files into the device use File | "Configure.." menu in Pocket PCemulator and set shared folder to the folder on your desktop computer. This folder will [...]
The tutorial demonstrates how to upload photo image with barcode and then recognize barcode value using BarCode Reader SDK in ASP.NET applicationThe following sample demonstrates how to upload image with barcode and then read barcode from it using Bytescout BarCode Reader SDK for .NETYou can find full source code of this sample in ExamplesAdvanced Examples folder of Bytescout BarCode Reader SDK installation.ASP.NET application (design mode): Running barcode recognition ASP.NET application: 1) Visual Basic in ASP.NETDefault.aspx:<%@ [...]