Link Search Menu Expand Document

Change PDF To HTML Output Page Width - VBScript

PDF To HTML SDK sample in VBScript demonstrating ‘Change PDF To HTML Output Page Width’

ExtractHTML.vbs
' Create Bytescout.PDF2HTML.HTMLExtractor object
Set extractor = CreateObject("Bytescout.PDF2HTML.HTMLExtractor")
extractor.RegistrationName = "demo"
extractor.RegistrationKey = "demo"

' Set HTML with CSS extraction mode
extractor.ExtractionMode = 1

' set output width to 200 pixels
extractor.OutputPageWidth = 200


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

' Save extracted HTML to file
extractor.SaveHtmlToFile_2 "output.html"

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

Set extractor = Nothing


Download Source Code (.zip)

Return to the previous page Explore PDF To HTML SDK