Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Arabic Text Extraction | VBScript
ExtractAllText.vbs:
VB
' 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