ByteScout Text Recognition SDK - VBScript and VB6 - Use Text Auto Corrections - ByteScout

ByteScout Text Recognition SDK – VBScript and VB6 – Use Text Auto Corrections

  • Home
  • /
  • Articles
  • /
  • ByteScout Text Recognition SDK – VBScript and VB6 – Use Text Auto Corrections

How to use text auto corrections in VBScript and VB6 and ByteScout Text Recognition SDK

How to use text auto corrections in VBScript and VB6

Learn how to use text auto corrections in VBScript and VB6 with this source code sample. ByteScout Text Recognition SDK is the software development kit for automatic text recognition and OCR from pdf documents and images. Can recognize English and non-English languages. It can be used to use text auto corrections using VBScript and VB6.

The SDK samples like this one below explain how to quickly make your application do use text auto corrections in VBScript and VB6 with the help of ByteScout Text Recognition SDK. Just copy and paste the code into your VBScript and VB6 application’s code and follow the instruction. Use of ByteScout Text Recognition SDK in VBScript and VB6 is also explained in the documentation included along with the product.

Trial version of ByteScout Text Recognition SDK can be downloaded for free from our website. It also includes source code samples for VBScript and VB6 and other programming languages.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

AutoCorrections.vbs
      
' Create and activate TextRecognizer object Set textRecognizer = CreateObject("ByteScout.TextRecognition.TextRecognizer") textRecognizer.RegistrationName = "demo" textRecognizer.RegistrationKey = "demo" inputDocument = "..\..\bad-quality.png" outputDocument = "result.txt" ' Load document (image or PDF) textRecognizer.LoadDocument(inputDocument) ' Set the location of OCR language data files textRecognizer.OCRLanguageDataFolder = "c:\Program Files\ByteScout Text Recognition SDK\ocrdata_fast\" ' Set OCR language. ' "eng" for english, "deu" for German, "fra" for French, "spa" for Spanish, etc. - according to files in "ocrdata" folder ' Find more language files at https://github.com/bytescout/ocrdata textRecognizer.OCRLanguage = "eng" ' Add error corrections that will be applied after the recognition. textRecognizer.Corrections.Add "Tut ", "Test " textRecognizer.Corrections.Add "Recog\w{1,}on", "Recognition", True ' Recognize text from all pages and save it to file textRecognizer.SaveText(outputDocument) WScript.Echo "Extracted text saved to " + outputDocument Set recognizer = Nothing

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Text Recognition SDK Home Page

Explore ByteScout Text Recognition SDK Documentation

Explore Samples

Sign Up for ByteScout Text Recognition SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Text Recognition SDK Home Page

Explore ByteScout Text Recognition SDK Documentation

Explore Samples

Sign Up for ByteScout Text Recognition SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next