Jump to content

IE, download img without reloading src


Recommended Posts

Hello,

i want to download an image from a website but i can't reload the img src as than it is another image. 

 

#include <IE.au3>
#include <WinAPIFiles.au3>
Local $oIE = _IECreate("https://www.website.com")
Local $oImg = _IEImgGetCollection($oIE, 0)
Local $sFilePath = _WinAPI_GetTempFileName("C:\TEMP")
Local $iBytesSize = InetGet($oImg.src, $sFilePath)
_IEQuit($oIE)

This downloads the file but as it opens the img src new, i get another image, not, what is displayed in the browser.

How can i download the exact image, that is displayed on my website? Something like right click "Save image" but without mouse interaction. (The img has an id if that helps.)

 

Thanks for any help.

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...