Link Search Menu Expand Document

Arabic Text Extraction - VBScript

PDF Extractor SDK sample in VBScript demonstrating ‘Arabic Text Extraction’

ExtractAllText.vbs
' Create Bytescout.PDFExtractor.TextExtractor object
Set extractor = CreateObject("Bytescout.PDFExtractor.TextExtractor")
extractor.RegistrationName = "demo"
extractor.RegistrationKey = "demo"

' Load sample PDF document
extractor.LoadDocumentFromFile("sample_english_arabic.pdf")

' Enable Arabic (and other RTL languages) text detection
extractor.RTLTextAutoDetectionEnabled = true

' Save extracted text to file
extractor.SaveTextToFile("result.txt")

' Open the output file in default associated application
Set shell = CreateObject("WScript.Shell")
shell.Run "result.txt", 1, false
Set shell = Nothing

Set extractor = Nothing


Download Source Code (.zip)

Return to the previous page Explore PDF Extractor SDK