Home >
.NET Imaging SDK >
VB.NET >
Decode Code 128 on Doc Image
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!
VB.NET Code 128 Recognition from Doc & Image
This VB.NET Code 128 barcode decoder control from RasterEdge
.NET Barcode Reader SDK can be used to decode Code 128 barcode from image files (like gif, png, jpeg, bmp and tiff) or document types (like PDF and Word) using VB.NET code programmatically. This 100% clean .NET solution can easily and accurately detect and decode multiple linear Code 128 barcodes from target file with high speed.
convert pdf to tiff c# code,
c# get pdf page size,
c# convert pdf to text file,
convert pdf to html c# open source,
c# pdf extract pages,
replace text in pdf using itext7 c#,
vb.net rotate pdf.
Related .net document control helps:
asp.net edit pdf image using c#:
ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net edit pdf text using c#:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
c# asp.net powerpoint viewer: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net sharepoint document viewer open source: ASP.NET SharePoint Document Viewer: view, annotate, redact documents in SharePoint
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net edit pdf image using c#:
ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net edit pdf text using c#:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
As for the usages of this VB.NET Code 128 barcode scanner SDK, developers can integrate this advanced Code 128 barcode decoding feature into their modern document image management system for document tracking and sorting.
asp net core mvc pdf viewer download,
asp net replace text fro pdf free,
asp.net open excel file in browser,
preview pdf in asp.net mvc,
load pdf file asp.net c#,
asp.net pdf editor,
c# asp.net open word document.
Besides, for mature image capturing project, this mature Code 128 barcode recognition component can be counted as a necessity.
To help you have a better understanding of this VB.NET Code 128 barcode reader control add-on, we offer this online tutorial which will give you a detailed explanation of this mature Code 128 barcode detecting and decoding technologies.
- Feature list of this VB.NET Code 128 barcode reader control toolkit
- Overview of dlls from VB.NET Code 128 barcode scanner library SDK
- Sample VB.NET code to decode Code 128 barcode from image file
- Demo VB.NET code for how to detect & read Code 128 barcode image from PDF document
- VB.NET programming example for accurate Code 128 barcode image recognition from Word page
VB.NET Code 128 Barcode Reader Control Features
- Professional VB.NET barcode scanner library add-on to decode Code 128 barcode from document & image
- Support fast Code 128 barcode reading in both VB.NET Windows Forms and VB.NET Web Forms applications
- Decode Code 128 barcode from defined area of target image file using VB.NET code
- Scan & read all Code 128 barcode images from specified Word or PDF page in VB.NET class application
- The image orientation and checksum character of Code 128 barcode can be automatically detected and decoded in VB.NET
- VB.NET developers are allowed to return Code 128 barcode scanning result to data string
VB.NET Code 128 Barcode Scanner SDK DLLs
The dlls from VB.NET Code 128 barcode scanner SDK are compacted into small-size libraries and can be integrated into VB.NET document image processing applications by adding reference directly. What should be noted here is that as this VB.NET Code 128 barcode reader control is only an add-on from RasterEdge
DocImage SDK for .NET. Therefore, you can use this Code 128 barcode reading function in your VB.NET project after you buy .NET Image SDK Core DLL license, as well as .NET Barcode Reader Add-On license.
VB.NET Code for Code 128 Scanning from Image
As is said above, RasterEdge VB.NET Code 128 barcode reader control can read Code 128 barcode from raster image file, like png, jpeg, gif, bmp or tiff. And here we take the Code 128 barcode recognition from TIFF file as an example. Using the VB.NET code below, you can detect and decode all Code 128 barcode from TIFF file and return decoded Code 128 barcode information as data string.
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "SampleBarcode.tif"
Dim datas As String() = BarcodeScanner.Scan(fileName, BarcodeType.Code128)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB.NET Code to Decode Code 128 Image from PDF
Using this VB.NET demo code below, you can decode all Code 128 barcodes from one selected PDF page. Besides, if you want to accelerate the Code 128 barcode recognition rate, you can define a barcode scanning area with the application of X & Y location.
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "Sample.pdf"
Dim reImage As REImage = DirectCast(REFile.OpenDocumentFile(fileName, New PDFDecoder()).GetPage(0).ToImage(), REImage)
Dim datas As String() = BarcodeScanner.Scan(reImage, BarcodeType.Code128)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB.NET Code to Read Code 128 Barcode from Word
The VB.NET programming example here is used to illustrate how to decode Code 128 barcode image from Word page (which can be accurately selected with
Word document page processor control). Remarkably, if you know the number of Code 128 barcodes in the target Word page, you are also able to set a maximum number of detected Code 128 barcode images.
Public Shared FolderName As String = "c:/"
Private Sub button1_Click(sender As Object, e As EventArgs)
Dim fileName As String = FolderName & "Sample.docx"
Dim reImage As REImage = DirectCast(REFile.OpenDocumentFile(fileName, New DOCXDecoder()).GetPage(0).ToImage(), REImage)
Dim datas As String() = BarcodeScanner.Scan(reImage, BarcodeType.Code128)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
Recommend this to Google+