Index pdf files with pdf extractor sdk is simple to apply in VBScript if you use these source codes below. ByteScout Data Extraction Suite: the set that includes 3 SDK products for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK. It can index pdf files with pdf extractor sdk in VBScript.
The SDK samples given below describe how to quickly make your application do index pdf files with pdf extractor sdk in VBScript with the help of ByteScout Data Extraction Suite. Simply copy and paste in your VBScript project or application you and then run your app! Complete and detailed tutorials and documentation are available along with installed ByteScout Data Extraction Suite if you’d like to learn more about the topic and the details of the API.
The trial version of ByteScout Data Extraction Suite can be downloaded for free from our website. It also includes source code samples for VBScript 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)
' Create Bytescout.PDFExtractor.InfoExtractor object
Set infoExtractor = CreateObject("Bytescout.PDFExtractor.InfoExtractor")
infoExtractor.RegistrationName = "demo"
infoExtractor.RegistrationKey = "demo"
' Create Bytescout.PDFExtractor.TextExtractor object
Set textExtractor = CreateObject("Bytescout.PDFExtractor.TextExtractor")
textExtractor.RegistrationName = "demo"
textExtractor.RegistrationKey = "demo"
' Create File System object
Set FSO = CreateObject("Scripting.FileSystemObject")
' Get folder object
Set objFolder = FSO.GetFolder("..\..")
' Get file list
Set files = objFolder.Files
' Create output file
Set textFile = FSO.CreateTextFile("output.txt", True, True)
For Each file in files
ext = UCase(FSO.GetExtensionName(file))
If ext = "PDF" Then
infoExtractor.LoadDocumentFromFile(file)
textFile.WriteLine("File Name: " & FSO.GetFileName(file))
textFile.WriteLine("Page Count: " & infoExtractor.GetPageCount())
textFile.WriteLine("Author: " & infoExtractor.Author)
textFile.WriteLine("Title: " & infoExtractor.Title)
textFile.WriteLine("Producer: " & infoExtractor.Producer)
textFile.WriteLine("Subject: " & infoExtractor.Subject)
textFile.WriteLine("CreationDate: " & infoExtractor.CreationDate)
textExtractor.LoadDocumentFromFile(file)
text = textExtractor.GetTextFromPage(0)
If len(text) > 0 Then
textFile.WriteLine("Text (first 200 chars): ")
textFile.WriteLine(Mid(text, 1, 200))
End If
textFile.WriteBlankLines(2)
End If
Next
textFile.Close
Set infoExtractor = Nothing
Set textExtractor = Nothing
Set FSO = Nothing
WScript.Echo "Done."
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: