Guide for VB.NET
Core Document Formats
Additional Features
Interleaved 2 of 5

VB.NET Imaging - Interleaved 2 of 5 Recognition

Read and Scan Interleaved 2 of 5 Within VB.NET Imaging Barcode Reading Toolkit

VB.NET
Home > .NET Imaging SDK > VB.NET > Decode Interleaved 2 of 5 on Doc Image
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!

VB Imaging Interleaved 2 of 5 Reading Summary
This page is mainly aimed at demonstrating how to read and scan Interleaved 2 of 5 barcode from image and document (including scanned resource) in VB.NET desktop project. c# pdf page size, vb net pdf add page count, how to add header and footer in pdf using itextsharp in c# with example, c# pdf remove page, vb.net pdf converter, vb.net pdf merge and compress, c# remove images from pdf.
Related .net document control helps:
asp.net office document viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
asp.net excel view: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net pdf viewer control: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
document viewer asp.net c#: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net dicom web viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
powerpoint viewer asp.net mvc: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
RasterEdge's award-winning .NET, VB.NET Imaging Barcode Reading SDK leads barcode industry in high performance and reliability. asp.net open excel file in browser, preview pdf in asp.net, display image in asp.net core mvc, asp.net core mvc view pdf, how to edit pdf file using itextsharp in asp.net, how to show pdf file in asp.net c#, asp.net open word document. Our Imaging Barcode Scanning SDK is available for multiple .NET platforms: C#.NET, VB.NET, ASP.NET and .NET Windows Forms. Developers and end users can easily incorporate this expert image barcode reading capability into your VB.NET desktop, web, Windows, mobile and tablet applications for recognizing Interleaved 2 of 5 and other popular linear and two dimension barcode symbols. Please link here to see all the readable barcode types within RasterEdge VB.NET Imaging Barcode Reading library.
Developers and end users can get following several instructions of VB.NET project Interleaved 2 of 5 barcode reading tutorial:
  • The benefits and technical details of Interleaved 2 of 5 barcode reading in VB project
  • How to read Interleaved 2 of 5 barcode from image and get the complete the barcode string value by using VB sample code
  • How to recognize Interleaved 2 of 5 barcode from scanned PDF document by adding RasterEdge .NET PDF DLL to VB.NET imaging barcode reading application
  • How to use the Word page processing and barcode reading API solutions to decode linear Interleaved 2 of 5 from Word document
VB Image Interleaved 2 of 5 Reading Benefits and Tech Details
  • Free to implement this VB.NET Interleaved 2 of 5barcode reading application DLL into any Microsoft Visual Studio and .NET Framework version
  • Easy to create both single and multi-threaded VB.NET imaging application(s) to read Interleaved 2 of 5 barcode
  • Allow users to decode and scan Interleaved 2 of 5 barcode from single or multiple image(s) within a few seconds in VB program
  • Flexibly read Interleaved 2 of 5 barcode from color and bitonal images by using VB code
  • Compliant .NET Imaging Pre-processing function to guarantee barcode reading quality
  • Easily integrate Interleaved 2 of 5 VB.NET reading library with Word and PDF document processing DLLs
VB Code to Read Interleaved 2 of 5 Barcode form Image
It can be very easy for users to read and decode Interleaved 2 of 5 barcode from different image forms (including TIFF, JPEG, BMP, GIF and PNG). There are a few steps you need to finish before you can apply following VB sample code directly. First you need to download and install RasterEdge .NET Imaging free trial SDK into your computer; and then create a compliant VB.NET Windows application to embed all the relevant references (RasterEdge.Imaging.Basic.dll, RasterEdge.Imaging.Processing.dll & RasterEdge.Imaging.Barcode.Scanner.dll); finally, paste your granted license text to the VB application folder to activate these imaging libraries.
And if you need to create Interleaved 2 of 5 barcode on image instead, please refer to: VB.NET imaging - use barcode creator SDK to generate Interleaved 2 of 5 barcode on any image format.
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.Interleaved2of5)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB Code to Scan Interleaved 2 of 5 from Certain PDF(s)
Please refer to following VB code to scan and read Interleaved 2 of 5 barcode from single or multiple PDF document page(s) within VB desktop application. And this PDF barcode reading function of RasterEdge VB.NET Imaging Barcode Reading SDK can be applied to both 32 bit and 64 bit Windows barcode operating systems.
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.Interleaved2of5)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB Demo Code to Decode Interleaved 2 of 5 on Word Page
In addition to Interleaved 2 of 5 barcode reading from PDF document, this VB.NET Imaging Barcode Reading component still allows users to detect and decode Interleaved 2 of 5 barcode from Word page. With this efficient barcode reader, users are supposed to get the recognized Interleaved 2 of 5 decoded data in 100% confidence, including check digit position, barcode font style & color and barcode related size value.
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.Interleaved2of5)

For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub


Recommend this to Google+


RasterEdge.com is professional provider of ASP.NET MVC Document Viewer, ASP.NET PDF Viewer, MVC PDF Viewer document, content and imaging solutions, available for ASP.NET AJAX, Silverlight, Windows Forms as well as WPF. We are dedicated to provide powerful & profession imaging controls, PDF document, image to pdf files and components for capturing, viewing, processing, converting, compressing and stroing images, documents and more.

©2000-2024 Raster Edge.com