Home >
.NET Imaging SDK >
VB.NET >
Scan Identcode on Doc Image
To get started with DocImage SDK for .NET, you are supposed to read VB.NET Imaging: Get Started first!
RasterEdge VB.NET Imaging Barcoding control empowers developers and non-technique end users with powerful and complete capabilities to add advanced and perfect linear barcode reading functionality to your desktop and web applications development to
read and decode Identcode from both image and document formats within Visual Basic .NET applications.
asp.net multipage tiff viewer with thumbnails,
mvc pdf viewer,
asp.net pdf editor component,
asp.net display word document in browser,
asp.net pdf viewer user control c#,
preview pdf in asp.net mvc,
asp.net image viewer.
And users who adopt this Identcode Image Reading component needn't to insert any external image and document managing component.
vb.net pdf to tiff converter,
vb.net itextsharp add image to pdf,
how to redact a pdf in c#,
c# pdf crop,
get coordinates of text in pdf c#,
how to convert pdf to jpg in c# windows application,
visual basic fill 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.
powerpoint viewer asp.net mvc: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net display tiff images: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
asp.net edit pdf page:
ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
asp.net dicom web viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
RasterEdge .NET Imaging Barcode SDK supports users to read and write almost all 1D linear and two dimension barcodes on image and document pages. So, you also can find the compliant
Identcode barcode creating library with VB.NET imaging application.
We are going to display following aspects of Identcode reading from image and document in VB program:
- Benefit list of using this VB.NET Imaging Identcode Barcode Reading Add-on
- More technical details of RasterEdge VB.NET Imaging Barcode Scanning library
- VB.NET imaging: how to read and decode Identcode from image forms
- VB.NET imaging: how to recognize and scan Identcode from a specific PDF document page according to users' needs
- VB.NET imaging: how to detect and recognize 1D Identcode from MS Word document, in addition, users are free to decide to read single Identcode or multiple Identcode barcodes at one time
VB.NET Image: Identcode Reading Add-on Benefit List
- Easy to add Identcode barcode reading functionality to both desktop and web applications in VB platform
- Support reading and scanning Identcode from scanned documents and photos in VB code
- Free and reliable sample code for users to read Identcode in high speed just through copy-and-paste
- Support decoding Identcode on image that is captured from web and Windows camera devices
- Use .NET Imaging Processing SDK to pre-process the image and document page that contains Identcode barcode, like image deskewing, despeckling, etc.
- Decode and recognize multiple Identcode barcodes form single or multiple PDF page(s) at one time
- .NET Imaging Word Add-on can be simply combined within Identcode Barcode Reading control by using a few lines of VB code
- Provide VB.NET Identcode barcode reading royalty free licensing (no need any additional run-time licenses or additional fees)
Technical Details of VB.NET Identcode Barcode Scanning Library
- Work in Microsoft .NET Framework 2.0, 3.0, 3.5, 4.0, 4.5
- Support VB.NET Idencode reading project in Visual Studio 2005, 2008, 2010 and 2012
- Also support reading other linear barcodes: Codabar, Code 39, Code 128, EAN-13, EAN-8, UPC-A, UPC-E, GS1-128, and more
- Able to decode two-dimension barcodes in VB.NET program: QR Code, Data Matrix and PDF-417
- Read and scan Identcode barcode from VB project JPEG, PNG, GIF, BMP and TIFF image files
- Decode and recognize 1D Identcode barcode from PDF and MS Word documents for VB application
If you are looking for .NET Imaging Barcode Generator instead, please go to
how to create and generate 1D and 2D barcodes in VB.NET image application.
VB.NET Image: How to Read Identcode from Image Forms
Following complete sample VB.NET class code is offered for users to decode and scan linear Identcode from multi-page TIFF file. Other supported image formats include PNG, JPEG, BMP and GIF. Please note that, if your target image has distortions (which are common from scanning, faxing, or cameras) then you'll need our .NET Imaging Processing solutions to compensate for these issues. To do so, you may add .NET image processing DLL to your VB.NET image barcode application via "Add Reference...".
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.Identcode)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB.NET Image: How to Decode Identcode on PDF Document
This VB.NET Imaging Identcode Reading component supports users reading and scanning 1D Identcode barcode from PDF document by combining Barcode Reading Add-on with PDF Document Processing library within VB.NET imaging project.
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.Identcode)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
VB.NET Image: How to Scan Identcode from Word Page
If you are looking for a perfect barcode reading toolkit for VB.NET that can allow you to detect and scan single or multiple Identcode from Microsoft Word document at one time, then you can't miss RasterEdge .NET Imaging Barcode Reader Add-on. Please refer to following demo code in VB class for detailed guide.
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.Identcode)
For Each data As String In datas
Debug.WriteLine(data)
Next
End Sub
Recommend this to Google+