Jump to content

Saving image from Internet explorer application


Recommended Posts

The source of the IMG tag might be accessible to InetGet(), something like:

$oIMG = _IEGetObjById($oIE, "ImgElementId")
$sURL = $oIMG.src
InetGet($sURL, "C:\Temp\Image.jpg")

:graduated:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

You can download all pictures of a web page like this Posted Image

#include <IE.au3>

$f_tryAttach=0
$f_visible=0
$f_wait=1
$oIE = _IECreate ( "http://www.autoitscript.com/", $f_tryAttach, $f_visible, $f_wait )
$oImgs = _IEImgGetCollection ( $oIE )
$iNumImg = @extended
ConsoleWrite ( "There are " & $iNumImg & " images on the page" & @Crlf )
For $oImg In $oImgs
    $_Url = $oImg.src
   ConsoleWrite ( "Img Info src= " & $oImg.src & @Crlf )
   InetGet ( $_URL, @DesktopDir & '\' & _GetFullNameByUrl ( $_URL ), 1, 0 )
Next
_IEQuit ( $oIE )

Exit

Func _GetFullNameByUrl ( $_FileUrl )
    $_FileName = StringSplit ( $_FileUrl, '/' )
    If Not @error Then 
        Return $_FileName[$_FileName[0]]
    Else
        Return 0
    EndIf
EndFunc  ;==>  _GetFullNameByUrl ( )

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

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...