Consulting

Results 1 to 2 of 2

Thread: Solved: Determine if the PDF is a Scanned Image or Native PDF

  1. #1
    VBAX Regular
    Joined
    Apr 2009
    Posts
    18
    Location

    Solved: Determine if the PDF is a Scanned Image or Native PDF

    I'm trying to determine if the webpage loaded into Internet Explorer is a scanned image or native pdf.

    Native PDF can be parsed, scanned cannot.

    The URL I am referencing is not a pdf file per se, but the page returned to IE is embedded and has a type="application/pdf"


    I'd like to skip files of this type. However if the file is a .pdf file type then I'd like to not skip that file.

    ------
    ie.navigate URL

    Do
    DoEvents
    Loop Until ie.readyState = READYSTATE_COMPLETE
    ie.Visible = IE_visible

    Set ieDoc = ie.document
    For Each element In ieDoc.all ' Code fails here for scanned pdfs
    ...

    thanks...

  2. #2
    VBAX Regular
    Joined
    Apr 2009
    Posts
    18
    Location
    I think the required logic is:

    If TypeName(ieDoc) = "HTMLDocument" then...

    This will return "AcroPDF" for the embedded PDF files.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •