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 VB.NET ASP.NET Codabar Barcode Reading Project
Dim datas() AsString = 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.
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.
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);