Our Customers
Contact Us Email: support@barcodelib.com
Download Barcode Reader for ASP.NET Trial

Codabar Barcode Reader / Scanner for ASP.NET Web Services

How to Read & Recognize Codabar Barcode in ASP.NET Application Using VB.NET & C#
  • Advanced developer-library for reading Codabar barcode in ASP.NET web applications
  • Professional ASP.NET barcode decoding library, compliance with .NET developing platforms
  • Read & decode Codabar linear barcode in popular .NET languages, like VB.NET & C#
  • Detect Codabar barcode and return data string & binary values in ASP.NET web projects
  • Scan & recognize Codabar barcode from 0, 90, 180 & 270 degrees in ASP.NET web site
  • Read & scan Codabar barcode from gif, bmp, png, tiff & jpeg image files in ASP.NET web
Install ASP.NET Codabar Barcode Reading Control
You can finish the installation by simply adding BarcodeLib.BarcodeReader.dll to your Visual Studio ASP.NET project reference.
Decode Codabar Barcode from Image File in ASP.NET Website
You can decode & read all those Codabar barcodes in the target image file using one-line C# or VB.NET class code. For trial ASP.NET Codabar barcode reader control, it will return the first character of Codabar with a random value.
For C# ASP.NET Codabar Barcode Scanning Project
      string[] results = BarcodeReader.read("c:/codabar-aspnet.gif", BarcodeReader.CODABAR);
For VB.NET ASP.NET Codabar Barcode Reading Project
     Dim datas() As String = BarcodeReader.read("c:/codabar-aspnet.gif ", BarcodeReader.CODABAR)
Enhance Codabar Barcode Reading Speed in ASP.NET Web Service
This ASP.NET Codabar barcode reading library owns two powerful barcode decoding functions.
  1. Scan large-size Codabar barcode using ASP.NET barcode reading dll

    If there is only one but a maximum Codabar barcode in the target file, you can set "maxOneBarcodePerPage" to true when you are scanning Codabar in ASP.NET web application.

    If you set the value of "maxOneBarcodePerPage" to true, the ASP.NET barcode reader library will stop scanning once it detects one Codabar barcode. But if you keep the default value of "maxOneBarcodePerPage", the ASP.NET barcode reader library will decode the Codabar from 4 directions with total five algorithms.

  2. Detect Codabar barcode by scanning partial source image file in ASP.NET

    Using this ASP.NET barcode reader library, you can easily detect & read Codabar barcode from any part of the source image file. For example, if you want to read Codabar barcode in the top 20% and bottom 20% area, you can use following C# or VB.NET class codes.

    The most top left point of source image is (0%, 0%) and the most bottom right point is (100%, 100%).
C# code for scanning Codabar in ASP.NET applications
     OptimizeSetting setting = new OptimizeSetting();

setting.setMaxOneBarcodePerPage(true);

ScanArea top20 = new ScanArea(new PointF(0.0F, 0.0F), new PointF(100.0F, 20.0F));

ScanArea bottom20 = new ScanArea(new PointF(0.0F, 80.0F), new PointF(100.0F, 100.0F));

List<ScanArea> areas = new List<ScanArea>();
areas.Add(top20);
areas.Add(bottom20);

setting.setAreas(areas);

string[] results = BarcodeReader.read("c:/codabar-aspnet.gif ", BarcodeReader.CODABAR, setting);
VB.NET code for reading Codabar in ASP.NET applications
     Dim setting As OptimizeSetting = New OptimizeSetting()

setting.setMaxOneBarcodePerPage(True)

Dim top20 As ScanArea = New ScanArea(New Drawing.PointF(0.0F, 0.0F), New Drawing.PointF(100.0F, 20.0F))

Dim bottom20 As ScanArea = New ScanArea(New Drawing.PointF(0.0F, 80.0F), New Drawing.PointF(100.0F, 100.0F))

Dim areas As List(Of ScanArea) = New List(Of ScanArea)
areas.Add(top20)
areas.Add(bottom20)

setting.setAreas(areas)

Dim datas() As String = BarcodeReader.read("c:/codabar-aspnet.gif ", BarcodeReader.CODABAR, setting)
Decode 1D & 2D Barcodes for ASP.NET Web Application
All Linear / 1D Barcodes:
All Matrix / 2D Barcodes: