How to extract images from PDF in Visual Basic 6 and VBScript - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

How to extract images from PDF in Visual Basic 6 and VBScript

  • Home
  • /
  • Articles
  • /
  • How to extract images from PDF in Visual Basic 6 and VBScript

Bytescout PDF Extractor SDK allows you to get images from pdf without any other software installed on your computer. The sample below demonstrates how to extract images from PDF in Visual Basic 6 and VBScript

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

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

i = 0

' Initialize image enumeration
If extractor.GetFirstImage() Then
    Do
        outputFileName = "image" & i & ".png"

        ' Save image to file
        extractor.SaveCurrentImageToFile outputFileName

        i = i + 1

    Loop While extractor.GetNextImage() ' Advance image enumeration
End If

' Open firest output image in default associated application
Set shell = CreateObject("WScript.Shell")
shell.Run "image0.png", 1, false
Set shell = Nothing

Set extractor = Nothing

Tutorials:

prev
next