OCR Recognition in VB.NET

Comprehensive VB.NET Codes for OCR Image within .NET Imaging SDK

OCR Add-on developed by RasterEdge provides fast and accurate Optical Character Recognition with flexible functions.
OCR Recognition
Here is a detailed VB.NET sample for Optical Character Recognition with RasterEdge .NET Imaging SDK and OCR Add-on. (For C#.NET developers, please go to OCR Recognition for C#.NET. Want to view Image and document in Winforms or Web applications, please go to OCR Recognition in Winforms and Web Document Image OCR Recognition.)
Imports System.IO
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing
Imports RasterEdge.Imaging.OCR

Bulid a Scannable PDF, PDF/A

Users may build and append RasterEdge Image into the multipage PDF file with following VB.NET codes:
Public Function PdfAddRasterEdgeImageToPdfOCR(ByVal PdfID As Integer, ByVal ImageID As Integer, ByVal Dictionary As 
String, ByVal DictionaryPath As String, CharWhiteList As String) As String

Save as Scannable PDF, PDF/A

If you want to perform OCR recognition and save as scannable PDF, PDF/A and, copy those following VB.NET codes:
Public Function SaveAsPDFOCR(ByVal ImageID As Integer, ByVal PDFStream As Stream, ByVal Dictionary 
As String, ByVal DictionaryPath As String, ByVal CharWhiteList As String, ByVal PDFA As Boolean, ByVal Title As
String, ByVal Author As String, ByVal Subject As String, ByVal Keywords As String, ByVal Creator As String) As String

Start OCR Recognition

To begin character recognition process, copy those following VB.NET codes:
Public Function OCRTesseractDoOCR(ByVal ImageID As Integer, ByVal Dictionary As String, 
ByVal DictionaryPath As String, ByVal CharWhiteList As String) As String
More Tutorials!
Find more user guides with RasteEdge .NET Image SDK using VB.NET sample codings!
Want to install Imaging SDK in Winforms or Web applications, please go to Use Imaging SDK in Winforms and Web Document Image Viewer.