4ggr35510n Posted November 17, 2010 Posted November 17, 2010 Is it possible to save image from internet explorer application? As using context menu > Save as...? Best Regards, 4ggr35510n
PsaltyDS Posted November 17, 2010 Posted November 17, 2010 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") 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
wakillon Posted November 17, 2010 Posted November 17, 2010 You can download all pictures of a web page like this #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.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now